import { defineConfig } from 'vite' import react from '@vitejs/plugin-react' export default defineConfig({ root: '.', // force project root build: { outDir: 'dist', rollupOptions: { input: 'index.html' // explicit entry } }, plugins: [react()], server: { proxy: { "/api": { target: "http://localhost:4000", changeOrigin: true, secure: false, }, }, }, })