web: React+Vite SPA — sessions, streaming chat, task panel, spawn flow (build clean)

This commit is contained in:
Raphael Westphal
2026-08-18 13:37:14 +02:00
parent 345025b070
commit 7d5f866527
22 changed files with 4253 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
const DEV_PROXY_TARGET: string = "http://localhost:8686";
export default defineConfig({
plugins: [react()],
build: {
outDir: "dist",
},
server: {
proxy: {
"/api": DEV_PROXY_TARGET,
"/ws": { target: DEV_PROXY_TARGET, ws: true },
},
},
});