반응형
<"리액트를 다루는 기술" 책 참조>
package.json 파일로 node_modules를 다운받기 위해 npm install을 하면 하단과 같은 에러가 나온다.
npm ERR! code ERESOLVE
npm ERR! ERESOLVE unable to resolve dependency tree
.....
Fix the upstream dependency conflict, or retry
this command with --force, or --legacy-peer-deps
to accept an incorrect (and potentially broken) dependency resolution.
.....
버전이 맞지 않아 생긴 에러인거 같다
npm ERR가 알려준 명령어를 사용하여 해결함
1. npm install --force : 충돌 우회
2. npm install --save --legacy-peer-deps : 충돌 무시
※궁금하신 점은 댓글로 남겨주세요※
※공감이 되셨다면 공감 버튼도 눌러주세요※
반응형
'JavaScript > React' 카테고리의 다른 글
React 클래스형 컴포넌트 constructor, super(props) 사용 이유 (0) | 2022.04.16 |
---|---|
React Props와 State의 차이 (0) | 2022.04.15 |
React Hooks 이란 (0) | 2020.08.17 |
React 라이프사이클 메서드 이해하기 (0) | 2020.08.17 |
일정 관리 웹 어플리케이션 만들기 (2) (0) | 2020.08.07 |