- 将本地项目关联到 github 上,资料很多就不写了
npm i -g gh-pages
安装gh-pages
,本地或者全局均可,根据自己选择,我这里安装到了全局在本地项目的
package.json
>scripts
添加命令predeploy
和deploy
,下面代码中的最后两个1
2
3
4
5
6
7
8"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"predeploy":"npm run build",
"deploy": "gh-pages -d build"
},运行
npm run deploy
- 打开
https://你的github名字.github.com/你的仓库名字
就可以访问你idea应用了。
将react部署到github pages
- 本文链接: https://daihaoxin.github.io/post/4ec45a14.html
- 版权声明: 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 3.0 许可协议。转载请注明出处!