繁体   English   中英

在部署在 heroku 上的 MERN 应用程序上获取 404

[英]Getting 404 on a MERN App deployed on heroku

我尝试在 Heroku 上部署我的 MERN 堆栈应用程序,但现在当我尝试启动该应用程序时收到 404。 相同的日志如下:

2020-02-21T04:43:37.862088+00:00 heroku[router]: at=info method=GET path="/" host=task-reminder25.herokuapp.com request_id=d549deca-d280-4db4-8549-3579082e903c fwd="45.118.159.123" dyno=web.1 connect=0ms service=3ms status=404 bytes=403 protocol=https
2020-02-21T04:43:37.862479+00:00 app[web.1]: 10.63.151.139 - - [21/Feb/2020:04:43:37 +0000] "GET / HTTP/1.1" 404 191 "https://dashboard.heroku.com/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36"

我也添加了环境变量。 我的 index.js(Backend) 的内容是:

//Serve static assets in production
if(process.env.NODE_ENV==='production') {
    //Set static folder
    app.use(express.static(`../client/build`));
    app.get('*',(req,res)=>{
        res.sendFile(path.resolve(__dirname, '..','client', 'build','index.html'))
    });

} 

节点

如果有人能帮我解决这个问题,那就太好了。 编辑:如果有人想看一看,我已将链接添加到我的 Github 存储库。

如果您已安装,请尝试删除 nodemon。

 "scripts": {
    "start": "node app.js" // node your main file name
  },

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM