반응형
목차
문제
yarn package install을 하는데 사내 프록시와 인증서로 인해 설치가 되지 않는 경우
Error
사내 망에서 yarn을 설치하는 경우
yarn install
을 실행하면
error An unexpected error occurred: "https://registry.yarnpkg.com/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.0.1.tgz: self-signed certificate in certificate chain".
info If you think this is a bug, please open a bug report with the information provided in "...\\yarn-error.log".
같은 에러가 뜨는 것을 볼 수 있다.
해결책
위 문제를 해결하기 위해
yarn config set "strict-ssl" false
명령어를 사용하면 yarn package 설치가 잘되는 것을 볼 수 있다.
반응형
'IT 톺아보기 > 기술 공부' 카테고리의 다른 글
[React][Typescript] Dialog 기능 이용할 때 깜빡임 발생 해결 (0) | 2023.06.25 |
---|---|
[React][Typescript] Firebase console을 이용한 Login 기능 구현 (0) | 2023.06.16 |
Matlab Simulink hasChangedTo Local Parameter Error 해결법 (0) | 2023.06.01 |
Vue 공부 - 1 (2) | 2023.03.13 |
작심삼일 JavaScript 정리 - 1 (0) | 2023.03.02 |