- Add permission rules to .claude/settings.json - Document empty merge and direct-to-master problems in problems.md - Fix agent stream URL to use vite proxy instead of hardcoded host - Add /agents proxy config to vite.config.ts Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
52 lines
1.3 KiB
TypeScript
52 lines
1.3 KiB
TypeScript
import react from "@vitejs/plugin-react";
|
|
import { defineConfig } from "vite";
|
|
|
|
// https://vite.dev/config/
|
|
export default defineConfig(() => {
|
|
const backendPort = Number(process.env.STORYKIT_PORT || "3001");
|
|
return {
|
|
plugins: [react()],
|
|
define: {
|
|
__STORYKIT_PORT__: JSON.stringify(String(backendPort)),
|
|
__BUILD_TIME__: JSON.stringify(new Date().toISOString()),
|
|
},
|
|
server: {
|
|
port: backendPort + 2172,
|
|
proxy: {
|
|
"/api": {
|
|
target: `http://127.0.0.1:${String(backendPort)}`,
|
|
timeout: 120000,
|
|
configure: (proxy) => {
|
|
proxy.on("error", (_err) => {
|
|
// Swallow proxy errors (e.g. ECONNREFUSED during backend restart)
|
|
// so the vite dev server doesn't crash.
|
|
});
|
|
},
|
|
},
|
|
"/agents": {
|
|
target: `http://127.0.0.1:${String(backendPort)}`,
|
|
timeout: 120000,
|
|
configure: (proxy) => {
|
|
proxy.on("error", (_err) => {});
|
|
},
|
|
},
|
|
},
|
|
watch: {
|
|
ignored: [
|
|
"**/.story_kit/**",
|
|
"**/target/**",
|
|
"**/.git/**",
|
|
"**/server/**",
|
|
"**/Cargo.*",
|
|
"**/vendor/**",
|
|
"**/node_modules/**",
|
|
],
|
|
},
|
|
},
|
|
build: {
|
|
outDir: "dist",
|
|
emptyOutDir: true,
|
|
},
|
|
};
|
|
});
|