728x90
더보기
The react-scripts package provided by Create React App requires a dependency:
"babel-loader": "8.1.0"
Don't try to install it manually: your package manager does it automatically.
However, a different version of babel-loader was detected higher up in the tree:
react가 오래되어서 발생한 문제이다.
babel-loader를 "8.2.3"으로 업데이트 해주자
npm의 경우
npm uni babel-loader
최상단 이동 후 바벨 삭제
8.1.0으로 설치
npm i babel-loader@8.1.0 -D
yarn의경우
yarn create react-app
yarn.lock의 babel-loader를 8.2.3으로 업데이트
728x90
'오류모음' 카테고리의 다른 글
배포 오류 (0) | 2022.01.06 |
---|---|
babel 오류 (0) | 2022.01.05 |
SyntaxError: The requested module '../controller/auth.js' does not provide an export named 'default' (0) | 2021.12.10 |
error: 레퍼런스를 'url'에 푸시하는데 실패했습니다 (0) | 2021.12.09 |
Error [ERR_UNSUPPORTED_DIR_IMPORT]: Directory import (0) | 2021.12.09 |