Implement AI orchestration wedding demo

This commit is contained in:
pelpanagiotis
2026-06-27 13:50:11 +03:00
commit 55d4fe95b4
67 changed files with 4736 additions and 0 deletions

22
frontend/vite.config.ts Normal file
View File

@@ -0,0 +1,22 @@
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
const backend = process.env.VITE_BACKEND_URL ?? "http://localhost:9000";
const backendWs = backend.replace(/^http/, "ws");
export default defineConfig({
plugins: [react()],
server: {
port: 5173,
proxy: {
"/dashboard": backend,
"/pending-actions": backend,
"/transcriptions": backend,
"/tools": backend,
"/ws": {
target: backendWs,
ws: true
}
}
}
});