From 95644fd457fff75f9327452b28314bd5963667ac Mon Sep 17 00:00:00 2001 From: Igor Maslov Date: Wed, 23 Jul 2025 21:11:58 +0000 Subject: [PATCH] Update vite.config.js for websocket proxy configuration --- vite.config.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/vite.config.js b/vite.config.js index 4d3971b..68b6a43 100755 --- a/vite.config.js +++ b/vite.config.js @@ -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 } } },