feat: add openconnect

This commit is contained in:
duorameng
2026-06-25 20:06:38 +08:00
parent fac1582fe0
commit 90f06de298
49 changed files with 3854 additions and 969 deletions
+2 -2
View File
@@ -120,12 +120,12 @@ export default defineConfig({
server: {
proxy: {
'/api': {
target: 'http://localhost:8052',
target: process.env.VITE_PROXY_TARGET || 'http://localhost:8052',
changeOrigin: true,
ws: true
},
'/openapi': {
target: 'http://localhost:8052',
target: process.env.VITE_PROXY_TARGET || 'http://localhost:8052',
changeOrigin: true
}
}