Reverts port changes made during the spike back to default (3001/5173). Adds two new stories for multi-worktree support: dynamic port management (story 32) and worktree diff inspection with editor integration (story 33). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
18 lines
323 B
TypeScript
18 lines
323 B
TypeScript
import react from "@vitejs/plugin-react";
|
|
import { defineConfig } from "vite";
|
|
|
|
// https://vite.dev/config/
|
|
export default defineConfig(() => ({
|
|
plugins: [react()],
|
|
server: {
|
|
port: 5173,
|
|
proxy: {
|
|
"/api": "http://127.0.0.1:3001",
|
|
},
|
|
},
|
|
build: {
|
|
outDir: "dist",
|
|
emptyOutDir: true,
|
|
},
|
|
}));
|