[ React Error ] Failed to load config "react-app" to extend from.
컴퓨터를 바꾸고 프로젝트를 생성해서 yarn start
로 프로젝트를 실행했는데 에러가 나왔습니다
Failed to load config "react-app" to extend from.
해결 방법을 구글에 찾아보니 간단했네요.
eslint-config-react-app
설치해주면 해결.
npm install eslint-config-react-app
or
yarn add eslint-config-react-app
추가)
ERROR in Plugin "react" was conflicted between "package.json » eslint-config-react-app
잘 사용하던 도중 package.json
과 eslint-config-react-app
이 충돌이 일어났습니다.
해결
eslint-config-react-app
삭제후 eslint-config-react-app@6
로 재설치
yarn remove eslint-config-react-app
yarn add eslint-config-react-app@6
Author And Source
이 문제에 관하여([ React Error ] Failed to load config "react-app" to extend from.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@dltmdwls15/React-Error-Failed-to-load-config-react-app-to-extend-from-qjm9ap2x저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)