diff --git a/.gitignore b/.gitignore index a547bf3..f44834f 100644 --- a/.gitignore +++ b/.gitignore @@ -22,3 +22,6 @@ dist-ssr *.njsproj *.sln *.sw? +.pnpm-store +pnpm-lock.yaml +package-lock.json \ No newline at end of file diff --git a/vite.config.ts b/vite.config.ts index bbcf80c..2becdf0 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -1,7 +1,13 @@ import { defineConfig } from 'vite' import vue from '@vitejs/plugin-vue' + // https://vite.dev/config/ export default defineConfig({ plugins: [vue()], + server: { + host: '0.0.0.0', + port: 3000, + allowedHosts: true + }, })