sandbox-agent/frontend/packages/inspector/vite.config.ts
Nathan Flurry 2ba630c180 acp spec
2026-02-11 06:43:36 -08:00

20 lines
438 B
TypeScript

import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
export default defineConfig(({ command }) => ({
base: command === "build" ? "/ui/" : "/",
plugins: [react()],
server: {
port: 5173,
proxy: {
"/v2": {
target: "http://localhost:2468",
changeOrigin: true,
},
"/v1": {
target: "http://localhost:2468",
changeOrigin: true,
},
},
},
}));