import { defineConfig } from 'vite' import react from '@vitejs/plugin-react' import path from 'path' export default defineConfig({ plugins: [react()], build: { outDir: '../backend/static', emptyOutDir: true, }, server: { port: 3000, strictPort: true, proxy: { '/api': { target: 'http://localhost:8000', changeOrigin: true, } } }, resolve: { alias: { '@': path.resolve(__dirname, './src'), }, }, })