본문 바로가기
웹/React

npm 설치 오류 메시지 code ERESOLVE npm ERR! ERESOLVE unable to resolve dependency tree

by void pattern 2021. 4. 25.

 

npm install 중에 오류 떴을 때 해결 방법

npm ERR! code ERESOLVE 
npm ERR! ERESOLVE unable to resolve dependency tree

 

 

npm install react-project --save --legacy-peer-deps

npm install과 함께 --save --legacy-peerdeps 를 추가하면 설치할 수 있다.

--legacy-peerdeps는 npm 버전 4에서 6까지 스타일로 설치할 때 모든 peer dependencies를 무시하고 설치할 수 있다.

댓글