개발 공부/Error
npm ERR! Cannot read properties of null (reading 'edgesOut')
MOON달
2023. 6. 6. 14:25
728x90
반응형
styled-components 설치하려는데 자꾸 이 에러가 나와서 뭔가 하고 구글링으로 검색했다.
원인은,
latest version of styled-components is v6 but there is some issue while doing npm i styled-components
styled-components version6 이후로 에러가 발생한다는 것이었다.
version6 이후부터는 저 명령어를 써서 설치하면 안된다는 것이었다...!
npm install styled-components@latest
// use yarn
yarn install styled-components
이렇게 @latest 를 추가해서 최신 버전을 다운받으면 해결 완료했다.
728x90