import { defineConfig } from 'vite' import react from '@vitejs/plugin-react' // 构建产物挂在 FastAPI 的 /app/ 下(base 必须对齐),旧看板仍占 /。 // dev 时把数据/媒体请求代理到本地 uvicorn(8126),省去跨域。 export default defineConfig({ base: '/app/', plugins: [react()], build: { outDir: 'dist', emptyOutDir: true }, server: { port: 5180, proxy: { '/api': 'http://127.0.0.1:8126', '/data': 'http://127.0.0.1:8126', '/frames': 'http://127.0.0.1:8126', }, }, })