Currently I'm increasing body size for all requests like this:
import Koa from 'koa';
import bodyParser from 'koa-bodyparser';
...
const app = new Koa();
...
app.use(
bodyParser({
jsonLimit: '150mb',
})
);
...
I'm struggling to find a way to increase body size just for single Koa route not for all routes. Does anyone has a solution?