From 647f06f0b0c90163eedb2b24c880a53c6625c8e3 Mon Sep 17 00:00:00 2001 From: MinhoJJang Date: Fri, 16 Aug 2024 16:40:27 +0900 Subject: [PATCH] hotfix: hardcoding --- src/app/_hooks/Axios.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/_hooks/Axios.ts b/src/app/_hooks/Axios.ts index 919d9645..842d5eb1 100644 --- a/src/app/_hooks/Axios.ts +++ b/src/app/_hooks/Axios.ts @@ -4,7 +4,7 @@ import { cookies } from 'next/headers'; import { useNavigate } from 'react-router-dom'; const api = axios.create({ - baseURL: process.env.NEXT_PUBLIC_SERVER_URL, + baseURL: 'http://was.dkation.com', withCredentials: true, });