반응형
에러 발생
리액트 프로젝트를 열어서 start를 했더니 아래와 같은 상황이 발생했다
$ portfolio % yarn start
yarn run v1.22.10
warning ../../../package.json: No license field
$ react-scripts start
/bin/sh: react-scripts: command not found
error Command failed with exit code 127.
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
에러의 원인
정확하진 않지만 git에 있는 리액트 프로젝트를 내 로컬에 다른 이름으로 clone 받았는데
그러면서 경로가 꼬인 게 아닐까 추측해본다
해결법
간단하다! 다시 install 해주면 된다
yarn install // yarn
npm install // npm
반응형
댓글