cra学习: 自定义模板

项目中经常会用到 create-react-app,但模板希望比较稳定
更新于: 2022-01-04 14:13:40

我常用的模板

# 基于官方 react-script@4.0.3 + typescript 稳定版本
npx create-react-app my-app --template @jswork/cra-template-typescript4

自定义模板的结构如下

.
├── package.json
├── template
│   ├── README.md
│   ├── craco.config.js
│   ├── gitignore
│   ├── public
│   ├── src
│   └── tsconfig.json
└── template.json

3 directories, 6 files

本地可以调试

npx create-react-app my-app --template file:/localpath/cra-templates/packages/cra-template-typescript4

参考