From 7650251ecdc78e6789e564d04a6fd50814bd8847 Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Fri, 20 Dec 2024 22:29:39 +0100 Subject: [PATCH] [UI] Proxy all routes under `/ws/*` in `devServer` configuration. --- platypush/backend/http/webapp/vue.config.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/platypush/backend/http/webapp/vue.config.js b/platypush/backend/http/webapp/vue.config.js index b21ded879b..f7dae05a40 100644 --- a/platypush/backend/http/webapp/vue.config.js +++ b/platypush/backend/http/webapp/vue.config.js @@ -44,9 +44,7 @@ module.exports = { '^/otp': httpProxy, '^/sound/': httpProxy, '^/tokens': httpProxy, - '^/ws/events': wsProxy, - '^/ws/requests': wsProxy, - '^/ws/shell': wsProxy, + '^/ws/': wsProxy, } } };