Answers for "Get requests return html code instead of real data"

0

Get requests return html code instead of real data

// 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'))
  })
}
Posted by: Guest on September-15-2020

Code answers related to "Get requests return html code instead of real data"

Code answers related to "Javascript"

Browse Popular Code Answers by Language