Merge pull request #119 from ismaslov/fix/websocket-proxy-config

Update vite.config.js for websocket proxy configuration
This commit is contained in:
viper151
2025-08-06 18:20:26 +02:00
committed by GitHub

View File

@@ -15,6 +15,10 @@ export default defineConfig(({ command, mode }) => {
'/ws': {
target: `ws://localhost:${env.PORT || 3002}`,
ws: true
},
'/shell': {
target: `ws://localhost:${env.PORT || 3002}`,
ws: true
}
}
},