Sungtt

You are running `create-react-app` 5.0.0, which is behind the latest release (5.0.1) 본문

React

You are running `create-react-app` 5.0.0, which is behind the latest release (5.0.1)

sungtt 2022. 5. 8. 14:44

개요

npx create-react-app appname 실행 후 만난 오류

전역설치를 더 이상 지원하지않기때문에 제거하라고 한다.

 

오류 내용

You are running `create-react-app` 5.0.0, which is behind the latest release (5.0.1).
We no longer support global installation of Create React App.

Please remove any global installs with one of the following commands:
- npm uninstall -g create-react-app
- yarn global remove create-react-app


해결

전역에 설치되어있는 CRA를 제거해준 후 재설치해주자.

npm uninstall -g create-react-app
yarn global remove create-react-app

 

Comments