_app-17d5029580c7387f.js:1 [next-auth][error][CLIENT_FETCH_ERROR] 
<https://next-auth.js.org/errors#client_fetch_error> Unexpected token '<', "<!DOCTYPE "... is not valid JSON 
Object
    client: true
    error: {message: `Unexpected token '<', "<!DOCTYPE "... is not valid JSON`, stack: `SyntaxError: Unexpected token '<', "<!DOCTYPE "... is not valid JSON`, name: 'SyntaxError'}
    message: "Unexpected token '<', \\"<!DOCTYPE \\"... is not valid JSON"
    url: "/api/auth/session"

해당 에러의 경우 next 버전 13에서 일부 개념을 변경하며 발생한 에러로, /src/app/api/auth/[...nextauth].ts파일 구조도 사용하고 있었습니다. 나는 그것을로 변경 /src/app/api/auth/[...nextauth]/route.ts하고 문제를 해결되었다.

https://github.com/nextauthjs/next-auth/issues/6981