feat: retro Claude ekip konsolunu kur

This commit is contained in:
2026-03-16 23:38:15 +03:00
parent 9294028fb2
commit 68d5c2afea
32 changed files with 5207 additions and 0 deletions

22
web/vite.config.js Normal file
View File

@@ -0,0 +1,22 @@
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
export default defineConfig({
root: "./web",
plugins: [react()],
server: {
port: 3000,
proxy: {
"/socket.io": {
target: "http://localhost:3001",
ws: true
},
"/health": "http://localhost:3001",
"/api": "http://localhost:3001"
}
},
build: {
outDir: "dist",
emptyOutDir: true
}
});