import { defineConfig } from "vitest/config"; import react from "@vitejs/plugin-react"; export default defineConfig({ plugins: [react()], server: { port: 5174, proxy: { "/api/pcp-request": { target: "http://localhost:7005", changeOrigin: true, rewrite: (path: string) => path.replace(/^\/api\/pcp-request/, "") }, "/api": { target: "http://localhost:7008", changeOrigin: true } } }, test: { environment: "jsdom", globals: true } });