Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- utf8mb4
- 자동완성방지
- AWS
- next #middleware
- 자연수 뒤집어 배열로 만들기
- vscode
- 코딩테스트
- useReducer
- 커밋 한번에
- s3확장자
- MySQL
- 제일 작은 수 제거하기
- EC2
- 코드정렬
- 프로그래머스
- prettier
- max_allowed_packet
- 부족한 금액 계산하기
- Node
- elasticIP
- 프리티어
- interactive_timeout
- .env
- dotenv
- react
- reacts3
- 리액트코드정렬
- express
- 리액트
- axios
Archives
- Today
- Total
Sungtt
You are running `create-react-app` 5.0.0, which is behind the latest release (5.0.1) 본문
React
You are running `create-react-app` 5.0.0, which is behind the latest release (5.0.1)
sungtt 2022. 5. 8. 14:44개요
npx create-react-app appname 실행 후 만난 오류
전역설치를 더 이상 지원하지않기때문에 제거하라고 한다.
오류 내용
You are running `create-react-app` 5.0.0, which is behind the latest release (5.0.1).
We no longer support global installation of Create React App.
Please remove any global installs with one of the following commands:
- npm uninstall -g create-react-app
- yarn global remove create-react-app
해결
전역에 설치되어있는 CRA를 제거해준 후 재설치해주자.
npm uninstall -g create-react-app
yarn global remove create-react-app
'React' 카테고리의 다른 글
styled component keyframes 변수,props 사용하기 (0) | 2022.10.24 |
---|---|
스타일드컴포넌트 as의 value를 props로 전달할 때 오류 (0) | 2022.09.08 |
s3 특정 확장자만 업로드하기 (0) | 2022.05.04 |
s3 이미지 업로드하기 (0) | 2022.05.03 |
ESLint 객체 생성 시 The object literal notation {} is preferrable (0) | 2022.04.19 |
Comments