styled components를 다운받는데,
npm ERR! Cannot read properties of null (reading 'edgesOut')
라는 에러가 발생을 했다
nextjs 최신버전 설치완료
storybook 최신버전 설치완료
npm install styled-components
styled components를 설치하는데 문제가 발생
의존성 관련 오류
npm cache clean
으로 npm캐시삭제후 package-lock.json
삭제
다시 npm install
실패, 같은 에러 발생
npm 패키지 업데이트를 안해서 생긴 문제
npm 업데이트
실패, 같은 에러 발생
https://stackoverflow.com/questions/70810819/npm-err-cannot-read-properties-of-null-reading-edgesout
에 있는 npm install styled-components@latest
방법 사용
성공
안전한 버전이 해당 버그를 가지고 있는 것을 추측된다. 그러므로, 해당 버그가 수정되었을 베타 버전(최신버전)을 설치함으로 해당 버그가 사라진것으로 추측된다