Skip to content

Latest commit

 

History

History
21 lines (18 loc) · 495 Bytes

README.md

File metadata and controls

21 lines (18 loc) · 495 Bytes

craco

通过craco来更改webpack配置
yarn add @craco/craco
package.json{
    "start": "craco start",
    "build": "craco build",
    "test": "craco test"
}

git 初始化

  git add .   // 添加项目所有文件到本地仓库
  git commit -m "提交消息" // 版本提交和备注
  git remote add origin 仓库地址 // 本地仓库和git仓库进行关联
  git branch -M master // 创建分支
  git push origin master  // pull本地仓库的内容