create-react-app my-app
터미널에 명령을 입력하면 모든 라이브러리를 성공적으로 다운로드하는 등의 작업을 수행하는 것처럼 보입니다. 그러나 프로세스가 끝나면 메시지가 나타납니다 template was not provided
.
입력
user@users-MacBook-Pro-2 Desktop% create-react-app my-app
산출
Creating a new React app in /Users/user/Desktop/my-app.
Installing packages. This might take a couple of minutes.
Installing react, react-dom, and react-scripts...
..... nothing out of the ordinary here .....
✨ Done in 27.28s.
A template was not provided. This is likely because you're using an outdated version of create-react-app.
Please note that global installs of create-react-app are no longer supported.
package.json에서 my-app
:
"dependencies": {
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-scripts": "3.3.0" <-- up-to-date
}
CRA 변경 로그를 확인한 결과 사용자 지정 템플릿에 대한 지원이 추가 된 것 같지만 명령 create-react-app my-app
이 변경 되지 않은 것 같습니다 .
여기서 무슨 일이 일어나고 있습니까?
yarn global upgrade create-react-app
- 다음 일yarn create react-app my-app
locate create-react-app
모든 디렉토리를 수행 하고 삭제하는 것이 었 create-react-app
습니다. 그런 다음 npx create-react-app
에야 마침내 다시 정상적으로 작동했습니다.