📅  最后修改于: 2022-03-11 15:03:07.037000             🧑  作者: Mango
// use this after route not before route
if (process.env.NODE_ENV === 'production') {
app.use(express.static(resolve(process.cwd(), 'client/build')))
app.get('*', (req, res) => {
res.sendFile(resolve(process.cwd(), 'client/build/index.html'))
})
}