From 60d89c9ab7b765193edfc2f019a5fa89f2846886 Mon Sep 17 00:00:00 2001 From: hyonun321 Date: Thu, 21 Nov 2024 22:17:47 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20socket=20URL=20api=EB=A1=9C=20=EC=9E=98?= =?UTF-8?q?=EB=AA=BB=20=EC=98=AC=EB=9D=BC=EA=B0=84=20=EA=B2=83=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit #166 --- client/src/stores/useSocketStore.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/stores/useSocketStore.ts b/client/src/stores/useSocketStore.ts index b0f28a8f..62bd6989 100644 --- a/client/src/stores/useSocketStore.ts +++ b/client/src/stores/useSocketStore.ts @@ -57,7 +57,7 @@ export const useSocketStore = create((set, get) => ({ } const SERVER_URL = - process.env.NODE_ENV === "development" ? "http://localhost:3000" : "https://api.nocta.site"; + process.env.NODE_ENV === "development" ? "http://localhost:3000" : "https://nocta.site"; const socket = io(SERVER_URL, { path: "/api/socket.io",