当我在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