import { defineConfig } from 'vite' import react from '@vitejs/plugin-react' // https://vitejs.dev/config/ export default defineConfig({ plugins: [react()], base: '/ce/', // Critical for Nginx Reverse Proxy server: { proxy: { '/api': { target: 'http://localhost:8000', // Forward API calls to FastAPI during dev changeOrigin: true } } } })