[React] Failed to load config "react-app" to extend from.

민주니어·2023년 12월 31일

React

목록 보기
2/2

Failed to load config "react-app" to extend from.

원인

create-react-app과 yarn이 충돌이 일어났기 때문

해결 방법

npm install eslint-config-react-app

or

yarn add eslint-config-react-app

추가

이러한 에러가 다시 발생

Plugin "react" was conflicted between "package.json » eslint-config-react-app

기존의 eslint-config-react-app을 삭제하고,
버전 6을 다시 설치해준다.

yarn remove eslint-config-react-app

yarn add eslint-config-react-app@6
profile
drop the bit

0개의 댓글