环境准备
// create-react-a匹配版本 $ create-react-app -V 5.0.1 // node 版本 $ node -V v16.16.0
1、第一步 通过 create-react-app 快速创建环境,然后运行 yarn eject 释放webpack配置
npx create-react-app react-debug
yarn eject
2、第二步 降级react、react-dom版本
npm install [email protected] [email protected] --save
修改index.js文件内容
3、运行npm run start
标签:npm,React,create,react,源码,版本,app From: https://www.cnblogs.com/Bryran/p/17418049.html