diff --git a/frontend/vite.config.js b/frontend/vite.config.js index 6e40ebe..713daff 100644 --- a/frontend/vite.config.js +++ b/frontend/vite.config.js @@ -13,10 +13,9 @@ export default defineConfig({ }, server: { port: 3000, - open: true, - allowedHosts: process.env.VITE_ALLOWED_HOSTS - ? process.env.VITE_ALLOWED_HOSTS.split(',') - : 'all', + host: '0.0.0.0', + open: false, + allowedHosts: true, proxy: { '/api': { target: 'http://localhost:5001',