Skip to content

Commit a84bc80

Browse files
committed
fix: 카카오 로그인, 회원가입 페이지 CSR 강제 적용을 위한 dynamic 설정 추가
1 parent a8554d7 commit a84bc80

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/app/(non-header)/oauth/kakao/sign-in/page.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
'use client';
22

3+
export const dynamic = 'force-dynamic';
4+
35
import useUserStore from '@/stores/authStore';
46
import axios from 'axios';
57
import { useRouter, useSearchParams } from 'next/navigation';

src/app/(non-header)/oauth/kakao/sign-up/page.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
'use client';
22

3+
export const dynamic = 'force-dynamic';
4+
35
import useUserStore from '@/stores/authStore';
46
import axios from 'axios';
57
import { useRouter, useSearchParams } from 'next/navigation';

0 commit comments

Comments
 (0)