为什么我通过github pages部署的react应用程序显示一个空白页面,我之前已经试过了(使用默认的react主页只是为了测试),它工作得很好。
"homepage": "https://aaroncferrer.github.io/banking-app",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"gh-pages": "^5.0.0"
我也能够添加/安装上面的依赖项。这是我对部署说明的参考:https://github.com/gitname/react-gh-pages#2-create-a-react-app
回购链接:https://github.com/aaroncferrer/banking-app
此外,我尝试通过vercel部署react应用程序,但它也在部署/构建阶段给我一个错误:Vercel Depoloyment Error
1条答案
按热度按时间nukf8bse1#
您应该将index.html文件放在应用程序的主根目录下,而不是放在任何其他文件夹(如public)中。