Framework/NextJS
[NextJS] TypeError: Right-hand side of 'instanceof' is not an object
뚜sh뚜sh
2023. 4. 24. 17:03
아래 코드에서 TypeError: Right-hand side of 'instanceof' is not an object가 생겨서 로직이 제대로 처리되지 않았다
try {
tokenValue = parseJwt(Cookies.get(tokenName), tokenKey) as AuthToken;
} catch (err) {
console.log(err);
}
[해결방법]
원래 사용하고 있던 jsonwebtoken 버전이 9.0.0이었는데 8.5.1로 다운그레이드하니 해결되었다 !
-모듈 삭제
npm uninstall 모듈
- 원하는 버전으로 모듈 설치
npm install 모듈@원하는 버전