vite.config.ts 360 B

123456789101112131415
  1. import { defineConfig } from "vite";
  2. import react from "@vitejs/plugin-react";
  3. /** Vite 配置:开发服务器端口与 API 反向代理(指向后端 8010)。 */
  4. export default defineConfig({
  5. plugins: [react()],
  6. server: {
  7. port: 5173,
  8. proxy: {
  9. "/api": "http://localhost:8010",
  10. "/health": "http://localhost:8010",
  11. },
  12. },
  13. });