컴퓨터를 바꾸고 프로젝트를 생성해서 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
흐음.. 저는 yarn berry 쓰고 있는데 동일한 문제가-ㅅ-;; 해결이 안되네요.ㅋㅋㅋㅋ
패키지 매니저 뭐 쓰시는지 알 수 있을까요?