next.js / test /integration /api-support /pages /api /large-response-with-config.js
AbdulElahGwaith's picture
Upload folder using huggingface_hub
b91e262 verified
export const config = {
api: {
responseLimit: false,
},
}
export default (req, res) => {
let body = '.'.repeat(4 * 1024 * 1024)
res.send(body)
}