diff --git a/src/tictactoe/providers/NakamaProvider.tsx b/src/tictactoe/providers/NakamaProvider.tsx index a80a75f..79e579a 100644 --- a/src/tictactoe/providers/NakamaProvider.tsx +++ b/src/tictactoe/providers/NakamaProvider.tsx @@ -46,6 +46,13 @@ export interface NakamaContextType { export const NakamaContext = createContext(null!); export function NakamaProvider({ children }: { children: React.ReactNode }) { + console.log( + "[Nakama] Initializing...", + import.meta.env.VITE_WS_SKEY, + import.meta.env.VITE_WS_HOST, + import.meta.env.VITE_WS_PORT, + import.meta.env.VITE_WS_SSL === "true" + ); const [client] = useState( () => new Client( import.meta.env.VITE_WS_SKEY,