import { defineConfig } from 'vite' import react from '@vitejs/plugin-react' // https://vite.dev/config/ export default defineConfig({ plugins: [react()], server: { host: '0.0.0.0', port: 5173, watch: { usePolling: true, }, // Allow requests from reverse proxy host // Add your production domain here allowedHosts: [ 'localhost', '127.0.0.1', '.lab.home.lucasacchi.net', // Allow all subdomains 'logwhispererai.lab.home.lucasacchi.net', ], }, })