Put in a recent project picker

This commit is contained in:
Dave
2026-02-16 18:57:39 +00:00
parent 539cbba409
commit ffab287d16
9 changed files with 1334 additions and 1116 deletions

View File

@@ -3,18 +3,14 @@ import { defineConfig } from "vite";
// https://vite.dev/config/
export default defineConfig(() => ({
plugins: [react()],
server: {
proxy: {
"/api": "http://localhost:3001",
"/ws": {
target: "ws://localhost:3001",
ws: true,
},
},
},
build: {
outDir: "dist",
emptyOutDir: true,
},
plugins: [react()],
server: {
proxy: {
"/api": "http://127.0.0.1:3001",
},
},
build: {
outDir: "dist",
emptyOutDir: true,
},
}));