如何将react项目 部署到Github仓库上
2019-06-25 本文已影响0人
zzyo96
准备工作:首先你得会自己创建github 仓库
step1:
在项目目录中的 .gitignore 里的 /build这一行删去
step2:
在项目目录下的package.json中添加
"homepage": "https://zzyo96.github.io/jianshu/build"
step2: 在项目目录下运行
yarn run build
git add .
git commit -m"update"
git push