next.js/test/integration/api-support/pages/api/parsing.js
parsing.js12 lines171 B
export const config = {
  api: {
    bodyParser: true,
  },
}

export default (req, res) => {
  if (req.body) {
    res.status(200).json({ message: 'Parsed body' })
  }
}
Quest for Codev2.0.0
/
SIGN IN