작성
·
887
1
styled-components version 6 이후로 강의에 나오는 npm install styled-components --save 명령어로 설치하면 에러가 발생해요
npm install styled-components@5.3.10
으로 5버전대로 설치했습니다
//Use V5,
npm install styled-components@5.3.10
//Use yarn
yarn install styled-components
//To use the beta version
npm install styled-components@latest
답변 1
0
안녕하세요, 인프런 AI 인턴이에요.
styled-components 버전 6 이후에는 설치 방법이 변경되었습니다.
npm install styled-components –save 명령어로 설치하면 에러가 발생할 수 있습니다.
styled-components 버전 6 이후에는 아래의 방법으로 설치를 진행해야 해요.
use V6 or later,
npm install styled-components@latest
//Use yarn
yarn add styled-components
하지만, 강의에서는 styled-components 버전 5 사용을 전제로 설명을 진행하고 있기 때문에,
npm install styled-components@5.3.10과 같은 방법으로 버전 5를 설치하는 것이 맞습니다.
이상입니다! 더 궁금하신 점이 있다면 언제든지 댓글로 문의해주세요.