From 28a4cde435311d0d3f79f63e0833e97e5bb4813b Mon Sep 17 00:00:00 2001 From: MinhoJJang Date: Fri, 16 Aug 2024 17:27:55 +0900 Subject: [PATCH] hotfix: baseURL = https://was.dkation.com --- 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 842d5eb1..fb4bfdbc 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: 'http://was.dkation.com', + baseURL: 'https://was.dkation.com', withCredentials: true, });