如何“未找到”将MERN应用程序部署到Heroku

时间:2019-12-12 16:54:58

标签: reactjs express heroku

当我在Heroku上打开我的应用程序时,显示未找到。这是我的代码,我的部署也很好,但是我没有加载React SELECT pg_get_serial_sequence('FOO', 'FOO_ID'); 文件,而是打了Express路由,可能有人指出了问题所在。

index.html

server.js

if(process.env.NODE_ENV === 'production') { app.use(express.static('client/build')); app.get('*', (req, res) => { res.sendFile(path.resolve(__dirname, 'client', 'build', 'index.html')); }); } const port = process.env.PORT || 5000; app.listen(port, () => console.log(`listening on port ${port}`));

package.json

0 个答案:

没有答案