https://github.com/unnhao/ReactRealTimeChatTraining
我部署到heroku,它没有在构建日志中发生任何错误
但是当我想要访问此https://moutalk.herokuapp.com/时 它显示应用程序错误
我测试github
git clone npm安装 npm start
但它可以运行!!!
发生了什么?
答案 0 :(得分:0)
看起来您正在使用端口3000
,但实际上应该将其更改为
var port = process.env.PORT || 8080;
并再次部署..
有关如何在heroku上部署的更多详细信息,请查看本教程
https://scotch.io/tutorials/how-to-deploy-a-node-js-app-to-heroku