我有一个github存储库,如下所示:
这是供参考的github链接:https://github.com/sedhha/my-water-chain
我想将我的水链文件部署为github页面。这是我所做的:
设置package.json(homepage
,predeploy
和deploy
)之后,我使用了以下命令:
"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",
"clean" : "gh-pages-clean"
}
npm run build
npm run deploy
我得到了最后的信息。但是,当我按照github存储库设置中站点设置的建议访问该网站时,它不会加载任何内容。我想知道在github页面上部署react js子目录的过程是什么。