rollback vite

This commit is contained in:
tao.chen
2026-08-07 12:56:52 +08:00
parent e8de719523
commit 2369dc3dda
+2 -2
View File
@@ -9,11 +9,11 @@ export default defineConfig({
port: 5173, port: 5173,
proxy: { proxy: {
"/api": { "/api": {
target: "http://8.153.151.51:8890", target: process.env.VITE_GATEWAY_URL || "http://127.0.0.1:8890",
changeOrigin: true, changeOrigin: true,
}, },
"/jupyter": { "/jupyter": {
target: "http://8.153.151.51:8890", target: process.env.VITE_GATEWAY_URL || "http://127.0.0.1:8890",
changeOrigin: true, changeOrigin: true,
ws: true, ws: true,
}, },