📜  API 请求在生产中返回 index.html - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:03:11.093000             🧑  作者: Mango

代码示例1
// 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'))
  })
}