next.js/test/integration/api-support/pages/api/large-response-with-config-size.js
large-response-with-config-size.js11 lines158 B
export const config = {
  api: {
    responseLimit: '5mb',
  },
}

export default (req, res) => {
  let body = '.'.repeat(6 * 1024 * 1024)
  res.send(body)
}
Quest for Codev2.0.0
/
SIGN IN