为什么应用程序在本地主机上可以工作,但在github页面上不能工作?

问题描述 投票:0回答:1

我使用React App建立了一个应用程序,创建了一个monsters Rolodex网站,它在我的本地主机上运行得很好,但是,将它推送到GitHub页面后,它只显示标题和搜索框。它缺少图片和文字。

我的文本编辑器是VS代码,我在windows PC上。

URL是 https:/jirehg.github.iomy-monsters-roladex。

reactjs visual-studio-code github-pages
1个回答
0
投票

尝试通过gh-pages推送。

1.通过以下方式将pachage添加为开发依赖。npm install gh-pages --save-dev 2.确保你添加到package.json中。"homepage": "http://{username}.github.io/{repo-name}" 3.确保将这些脚本添加到package.json中。"predeploy": "npm run build", "deploy": "gh-pages -d build" 4.将其添加为远程和 npm run deploy

© www.soinside.com 2019 - 2024. All rights reserved.