[문제해결] Failed to load config "react-app" to extend from.

Jinny·2023년 12월 7일
2

문제해결

목록 보기
4/13

깃헙을 합치는 과정에서 yarn.lock 파일이 충돌이 발생했다.

yarn.lock 파일에서 충돌이 발생하면 yarn.lock 파일과
node_modules 폴더를 삭제한다. 이때 node_modules 폴더를 삭제하면 오래 걸리므로 명령어로 삭제하는 것이 좋다

rm -rf node_modules/ 👉 node_moudules 폴더 삭제

yarn.lock 파일은 명령어 없이 삭제하면 된다.

그다음 yarn intall 👉 yarn start로 실행하면
충돌을 해결할 수 있다.

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

해결 출처

0개의 댓글