From ba2199c60b40df5cb62a84de594333b733544a67 Mon Sep 17 00:00:00 2001 From: gltron Date: Wed, 14 Jul 2021 17:38:19 +0200 Subject: [PATCH] Fixed server address --- client/src/store/socketPlugin.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/store/socketPlugin.js b/client/src/store/socketPlugin.js index 21c04b5..2bb38c3 100644 --- a/client/src/store/socketPlugin.js +++ b/client/src/store/socketPlugin.js @@ -1,7 +1,7 @@ import { ToastProgrammatic as Toast } from 'buefy' -// const connection = new WebSocket('wss://tronio.gltronic.ovh/socket') -const connection = new WebSocket('ws://localhost:3000/socket') +const connection = new WebSocket('wss://tronio.gltronic.ovh/socket') +// const connection = new WebSocket('ws://localhost:3000/socket') export default function createSocketPlugin () { return store => {