react脚手架更新 创建不了项目
原因:create-react-app更新导致
- 解决方案一
卸载旧的脚手架
npm uninstall -g create-react-app
使用 npx 创建新的项目
npx create-react-app my-app
cd my-app
npm start
- 解决方案二
官方
npm install --save --save-exact react-scripts@4.0.1 -g
or
yarn add --exact react-scripts@4.0.1
@相关版本号