next.js/test/integration/api-body-parser/pages/api/index.js
index.js13 lines250 B
export default (req, res) => {
  if (
    process.env.CUSTOM_SERVER &&
    typeof req.fromCustomServer === 'undefined'
  ) {
    throw new Error('missing custom req field')
  }

  if (req.method === 'POST') {
    res.status(200).json(req.body)
  }
}
Quest for Codev2.0.0
/
SIGN IN