본문 바로가기
Dev/React

export 'default' (imported as 'jwtDecode') was not found in 'jwt-decode

by ArcticBear 2024. 6. 7.
반응형

 

 

 

 문제

export 'default' (imported as 'jwtDecode') was not found in 'jwt-decode 라는 오류가 발생했습니다.

 

 

 

 해결 방법

React v6 부터는 jwtDecode를 import 할 때

import jwtDecode from 'jwt-decode'; 말고

 

import { jwtDecode } from 'jwt-decode';

 

로 jwtDecode를 Brace 처리 해주어야 한다.

 

 

 해결책

 

1. import 부분 변경

 

  • 변경 전 ( import jwtDecode from 'jwt-decode'; )

  • 변경 후 ( import { jwtDecode } from 'jwt-decode'; )

 

 

 마지막으로

React 버전 마다 차이가 많아서 좀 더 풍부한 지식을 가지고 있으면 대처할 수 있는 시간을 최대한 줄일 수 있을 것 같다.

반응형