React,Next

You are running `create-react-app` 4.0.3, which is behind the latest release (5.0.1). 에러 해결하기

유병각 2022. 6. 7. 23:51

You are running `create-react-app` 4.0.3, which is behind the latest release (5.0.1). 해결법.

 

에러 메세지에 뜨는 대로 npm uninstall -g create-react-app 을 한뒤  npx create-react-app "name" -template typescript  으로 다시 만들어도 똑같은 에러가 뜬다.

 

 

이때  npx create-react-app@latest "name" -template typescript 처럼 latest 를 붙여주면 정상적으로 만들어진다.!