From f3e171264c34eb2e31286505025bdbe6ff400259 Mon Sep 17 00:00:00 2001 From: "D. Berge" Date: Fri, 9 Oct 2020 18:10:14 +0200 Subject: [PATCH] Fix development websocket URL --- lib/www/client/source/vue.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/www/client/source/vue.config.js b/lib/www/client/source/vue.config.js index 8c5c1db..96db00d 100644 --- a/lib/www/client/source/vue.config.js +++ b/lib/www/client/source/vue.config.js @@ -8,7 +8,7 @@ module.exports = { target: "http://localhost:3000", }, "^/ws(/|$)": { - target: "http://localhost:3000", + target: "ws://localhost:3000", ws: true } }