From 2591eafdf6f46bd689c0a25da87b8b1f7b37d69f Mon Sep 17 00:00:00 2001 From: david zhou Date: Mon, 17 Jun 2024 18:04:30 +1000 Subject: [PATCH] test --- client/src/utils/socket.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/utils/socket.ts b/client/src/utils/socket.ts index d056993b9..e2e713326 100644 --- a/client/src/utils/socket.ts +++ b/client/src/utils/socket.ts @@ -1,5 +1,5 @@ import { io } from 'socket.io-client'; -const URL = import.meta.env.VITE_DEBUGGER_URL || 'http://localhost:8000'; +const URL = import.meta.env.VITE_DEBUGGER_URL || 'https://structs.sh:8000'; export const socket = io(URL);