본문 바로가기

React

[React 세팅] 리액트 create-react-app 세팅 오류 ! (You are running `create-react-app` 4.0.1, which is behind the latest release (5.0.0).)

이슈

You are running `create-react-app` 4.0.1, which is behind the latest release (5.0.0).
새로 프로젝트를 하려고 npx create-react-app my-app 명령어로 설치를 하려는데, 위와 같은 오류가 뜨면서 계속 되지 않았다.....

 

해결

npm uninstall -g create-react-app
npm add create-react-app
npx create-react-app 새로만들프로젝트명

 

반응형