reactjs 部署到github页面时请求路径错误

nuypyhwy  于 2023-04-29  发布在  React
关注(0)|答案(1)|浏览(170)

我想将https://github.com/S-N-O-R-L-A-X/Bridge-Tools部署到https://s-n-o-r-l-a-x.github.io/Bridge-Tools/
部署似乎工作正常,但页面是白色的。我已经搜索了一些网页,并尝试了他们说,但我还没有使用路由器。
我想这是因为走错了路。也许路径应该是https://s-n-o-r-l-a-x.github.io/Bridge-Tools/assets/index-785ed399.css。但是,我不知道在哪里改变它。
package.json如下

"homepage": "https://S-N-O-R-L-A-X.github.io/Bridge-Tools",
  "name": "Bridge-Tools",
  "private": false,
k2arahey

k2arahey1#

看起来你的defineConfig没有设置base: '/Bridge-Tools/',正如vite在GH页面上部署的静态站点指南中提到的那样。
例如,您应该能够在开发人员工具中看到,目前它遇到了无法检索https://s-n-o-r-l-a-x.github.io/assets/index-fb37b952.jshttps://s-n-o-r-l-a-x.github.io/assets/index-785ed399.css的错误

相关问题