| export const config = { | |
| api: { | |
| responseLimit: '5mb', | |
| }, | |
| } | |
| export default (req, res) => { | |
| let body = '.'.repeat(6 * 1024 * 1024) | |
| res.send(body) | |
| } | |
| export const config = { | |
| api: { | |
| responseLimit: '5mb', | |
| }, | |
| } | |
| export default (req, res) => { | |
| let body = '.'.repeat(6 * 1024 * 1024) | |
| res.send(body) | |
| } | |