본문 바로가기
IT/react

[React] create-react-app 시, yarn의 unexpected error occurred 해결

by Josh.P 2020. 3. 3.
반응형

create-react-app 명령어를 실행할 때, yarn으로 패키지를 설치하는 데, 아래와 같은 에러가 발생했다.

error An unexpected error occurred: "https://registry.yarnpkg.com/react: unable to verify the first certificate".

 

해당 문제는 SSL 문제로 해결방법은 아래와 같다.

yarn config set "strict-ssl" false

 

npm에서도 동일한 에러가 발생한다면 아래와 같이 진행

npm config set strict-ssl false
반응형

댓글