import { defineConfig } from 'vite' import react from '@vitejs/plugin-react' // https://vitejs.dev/config/ export default defineConfig({ plugins: [react()], server: { port: 3000, proxy: { '/api': { target: 'http://localhost:5000', changeOrigin: true, rewrite: (path) => path.replace(/^\/api/, '') } } }, build: { outDir: 'dist', sourcemap: false, minify: 'terser', terserOptions: { compress: { drop_console: true, }, }, rollupOptions: { output: { manualChunks: { vendor: ['react', 'react-dom'], }, }, }, }, preview: { port: parseInt(process.env.PORT || '3000'), host: '0.0.0.0', } })