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