본문 바로가기

React&React-Native/React

[#. React] npx create-react-app CRA 실패, 에러 해결

반응형

 

 

 

 

 

npx creact-react-app react-project

 

React 프로젝트 생성 시 문제가 발생했다

에러 문구는 아래와 같다

 

We no longer support global installation of Create React App

혹은

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.

 

CRA로 react project를 생성하려고 하는데 global로 설치한 CRA를 더 이상 지원하지 않는다고 한다 

 

 

sudo npm uninstall -g create-react-app
npx creact-react-app react-project

 

global 옵션을 줘서 uninstall한 후 다시 npx, CRA로 프로젝트를 생성하면 된다

 

 

 

 

 

반응형