feat: retro Claude ekip konsolunu kur
This commit is contained in:
22
web/vite.config.js
Normal file
22
web/vite.config.js
Normal 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
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user