diff --git a/vite.config.js b/vite.config.js index bbcf80c..4e9afea 100644 --- a/vite.config.js +++ b/vite.config.js @@ -1,7 +1,17 @@ -import { defineConfig } from 'vite' -import vue from '@vitejs/plugin-vue' +import { defineConfig } from 'vite'; +import vue from '@vitejs/plugin-vue'; -// https://vite.dev/config/ export default defineConfig({ plugins: [vue()], -}) + define: { + 'process.env': process.env, + }, + server: { + host: true, + strictPort: true, + port: 5000, + watch: { + usePolling: true, + }, + }, +}); \ No newline at end of file