From c36971956460b0377d6858c8def5c23bf2faf532 Mon Sep 17 00:00:00 2001 From: Dennis Postma Date: Sun, 9 Feb 2025 16:26:30 +0100 Subject: [PATCH] Debug --- src/stores/gameStore.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/stores/gameStore.ts b/src/stores/gameStore.ts index 4c81ca8..385951d 100644 --- a/src/stores/gameStore.ts +++ b/src/stores/gameStore.ts @@ -72,6 +72,10 @@ export const useGameStore = defineStore('game', { this.uiSettings.isCharacterProfileOpen = !this.uiSettings.isCharacterProfileOpen }, initConnection() { + console.log('initConnection') + console.log(config.server_endpoint) + console.log(config.environment) + console.log(config.environment === 'production') this.connection = io(config.server_endpoint, { secure: (config.environment === 'production'), withCredentials: true,