[React] You are running `create-react-app` 4.0.3, which is behind the latest release (5.0.1)

hhnn0·2022년 12월 21일
0
post-thumbnail

상황

npx create-react-app . {프로젝트 이름} --template typescript실행시 오류 발생

npm uninstall -g create-react-app
yarn global remove create-react-app
을 해도 같은 문제 발생

추측

아마도 create-react-app이 최신 버전이 아니라 발생하는 문제로 추정.

해결

npx create-react-app@latest . {프로젝트 이름} --template typescript 으로 실행시 해결

0개의 댓글