next.js/test/integration/api-support/pages/api/large-response.js
large-response.js5 lines91 B
export default (req, res) => {
  let body = '.'.repeat(4 * 1024 * 1024)
  res.send(body)
}
Quest for Codev2.0.0
/
SIGN IN