Error: This action with HTTP GET is not supported by NextAuth.js 해결법

dongwookim·2024년 3월 4일
0


로그인을 하지않는 유저가, 유저 Link를 누르면 로그인 페이지로 이동을 해야하는데
위와 같은 에러가 발생해버렸다.

middleware.ts 파일에서 해당 로직이 잘못된것을 찾았다.

	/**
    * login path가 잘못됨
    */
	NextResponse.redirect(new URL("api/auth/login"), req.url);  

	// signin path로 올바르게 바꿔주자
	NextResponse.redirect(new URL("api/auth/signin"), req.url);  

profile
Practice makes perfect

0개의 댓글