如何在子目录的github页面上部署React应用?

时间:2020-08-14 10:11:11

标签: github-pages

我有一个github存储库,如下所示:

  • 烧瓶后端
  • 我的水链(反应JS文件)

这是供参考的github链接:https://github.com/sedhha/my-water-chain

我想将我的水链文件部署为github页面。这是我所做的:

设置package.json(homepagepredeploydeploy)之后,我使用了以下命令:

"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子目录的过程是什么。

0 个答案:

没有答案