프론트엔드 repo를 clone 받아서 오픈하려고 하니, yarn install시 아래와 같은 에러가 발생하였다.
Internal Error: Cannot find module '/Users/경로이름/프로젝트이름/프로젝트이름2/.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs'
해결방법
아마도 yarn 패키지 버전에 버전 에러가 있는듯하니
rm -rf .yarn .yarnrc.yml
위의 명령어를 통해 .yarnrc.yml 파일을 삭제해주고, 다시 yarn install을 하니 제대로 설치가 되었다.
'Frontend' 카테고리의 다른 글
SSR(Server Side Rendering)과 CSR(Client Side Rendering) (0) | 2023.08.11 |
---|---|
디렉토리 내 abi 파일이 없어 발생한 에러 해결 (0) | 2023.07.18 |
CORS(Cross-Origin-Resource-Sharing) <-> SOP(Same Origin Policy) (0) | 2023.03.08 |
프론트엔드 웹 성능 측정 (0) | 2023.02.20 |
TS2440: Import declaration conflicts with local declaration of ~ (0) | 2023.02.07 |