카테고리 없음
[React] `create-react-app` 4.0.3, which is behind the latest release (5.0.0). 해결법
mingg123
2022. 1. 13. 10:29
typescript로 프로젝트를 하나 만드려고 했는데 오류가 발생하였다.
$npm uninstall -g create-react-app 을 해라고 한다.
실행 후 다시 만들어도 되지 않았다.
해결법
npm uninstall -g create-react-app
npm add create-react-app
npx create-react-app [프로젝트이름] --template typescript
정상적으로 완료!