반응형
Yarn Berry + Nextjs + Styled-Component 로 개발을 하던 중 제목과 같은 에러가 발생하였다.
에러로그를 자세히 보면
Module not found: styled-components tried to access react-is (a peer dependency) but it isn't provided by its ancestors; this makes the require call ambiguous and unsound.
Required package: react-is Required by: styled-components@virtual:0487b1b8263ee74b6a800d7d32396247265bb66793913170b66fbaba014393ed5e7147a33f4bbb04ae9c659e18794d2a28c1045211d073c2ec3f37a52f31b1e7#npm:5.3.5
...
...
위와 같은 에러를 만난다.
로그를 자세히 보면 해결하는 것은 어렵지 않다.
Required package: react-is
그래서 해당 모듈을 추가해주었다.
yarn add react-is
참고
https://github.com/yarnpkg/berry/issues/966
반응형
'React > Nextjs' 카테고리의 다른 글
의존성 production install 후 next build 시 next.config.mjs 에@next/bundle-analyzer 라이브러리 못찾는 에러 해결 (0) | 2023.02.16 |
---|---|
nextjs 에서 antd 5.x 와 tailwind 적용 (0) | 2023.02.15 |
next-auth 를 활용한 jwt 인증 및 refresh 토큰 순환 (0) | 2022.08.14 |