728x90
728x90
문제 상황
리액트 서버 실행을 위해서 npm start를 입력하니 아래와 같은 오류가 발생하였다.
⚠️Error: error:0308010C:digital envelope routines::unsupported
잘못된 코드
import ... from './Component';
개선한 코드
import {...} from './Component';
react 모듈에는 복수의 함수가 있는 라이브러리 형태의 모듈로서 default 키워드를 사용하지 않고 있다.
따라서 중괄호를 붙여 import한다.
728x90
반응형
'이슈관리' 카테고리의 다른 글
리액트 Encountered two children with the same key (0) | 2023.06.01 |
---|---|
Three.js R3F: P is not part of the THREE namespace! Did you forget to extend? 오류 (0) | 2023.04.27 |
next 환경변수 undefined 오류 (0) | 2023.03.20 |
리액트 Failed to load resource : the server responded with a status of 404 () (0) | 2023.03.10 |
tailwind template literal 사용 시 스타일 적용 (0) | 2023.03.06 |
댓글