Files
music-orchestrator/frontend/vite.config.ts
2026-02-22 23:18:57 -05:00

16 lines
341 B
TypeScript

import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
export default defineConfig({
plugins: [react()],
server: {
proxy: {
// Forward all /api requests to the FastAPI backend during development
'/api': {
target: 'http://localhost:8000',
changeOrigin: true,
},
},
},
})