From 3e7481ddf7dd9cd27d7e859f8128ba780594b2f8 Mon Sep 17 00:00:00 2001 From: "sungjin.choi" Date: Tue, 26 May 2026 13:48:11 +0900 Subject: [PATCH] fix : --- src/views/Main.vue | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/views/Main.vue b/src/views/Main.vue index cb9c808..6dff83f 100644 --- a/src/views/Main.vue +++ b/src/views/Main.vue @@ -202,7 +202,11 @@ const handleLoginSubmit = async () => { const response = await axios.post(`${apiBaseUrl}/api/login`, { username: loginId.value, password: loginPw.value - }); + }, + { + withCredentials: true + } + ); if (response.data && response.data.token) { localStorage.setItem('token', response.data.token);