mirror of
https://github.com/harivansh-afk/sandbox-agent.git
synced 2026-04-15 23:01:37 +00:00
27 lines
780 B
TypeScript
27 lines
780 B
TypeScript
import { defineConfig } from "vite";
|
|
import react from "@vitejs/plugin-react";
|
|
import { frontendErrorCollectorVitePlugin } from "@openhandoff/frontend-errors/vite";
|
|
|
|
const backendProxyTarget = process.env.HF_BACKEND_HTTP?.trim() || "http://127.0.0.1:7741";
|
|
const cacheDir = process.env.HF_VITE_CACHE_DIR?.trim() || undefined;
|
|
export default defineConfig({
|
|
define: {
|
|
"import.meta.env.OPENHANDOFF_FRONTEND_CLIENT_MODE": JSON.stringify(
|
|
process.env.OPENHANDOFF_FRONTEND_CLIENT_MODE?.trim() || "remote",
|
|
),
|
|
},
|
|
plugins: [react(), frontendErrorCollectorVitePlugin()],
|
|
cacheDir,
|
|
server: {
|
|
port: 4173,
|
|
proxy: {
|
|
"/api/rivet": {
|
|
target: backendProxyTarget,
|
|
changeOrigin: true,
|
|
},
|
|
},
|
|
},
|
|
preview: {
|
|
port: 4173,
|
|
},
|
|
});
|