Spaces:
Sleeping
Sleeping
| import { defineConfig } from 'vite' | |
| import react from '@vitejs/plugin-react' | |
| export default defineConfig({ | |
| plugins: [react()], | |
| build: { | |
| outDir: 'dist', | |
| assetsDir: 'assets', | |
| }, | |
| server: { | |
| port: 5173, | |
| proxy: { | |
| // Proxy API calls to FastAPI during development | |
| '/reset': 'http://localhost:8000', | |
| '/step': 'http://localhost:8000', | |
| '/schema': 'http://localhost:8000', | |
| '/health': 'http://localhost:8000', | |
| '/api': 'http://localhost:8000', | |
| }, | |
| }, | |
| }) | |