day.js Issue

Joy🌱·2023년 5월 18일
0

🌟 Trouble Shooting

목록 보기
3/17
post-thumbnail

❓ 문제 발생

기존에 설치되어있던 @fullcalendar, @testing-library, @toast-ui 등과 의존성(dependency) 모듈 버전 충돌로 인해 설치되지 않는 오류 발생

npm ERR! code ERESOLVE
npm ERR! ERESOLVE could not resolve
npm ERR!
npm ERR! While resolving: @toast-ui/react-editor@3.2.3
npm ERR! Found: react@18.2.0
npm ERR! node_modules/react
npm ERR!   peer react@"^16.7.0 || ^17 || ^18" from @fullcalendar/react@6.1.7
...

❗ 원인

최신 버전의 npm에서 peer dependency가 충돌

✅ 해결

--legacy-peer-deps를 install 시 추가하여 해결

npm install dayjs --legacy-peer-deps
profile
Tiny little habits make me

0개의 댓글