Límite JSON

this.app.use(express.json({ limit: '2mb' }));
this.app.use(express.urlencoded({ limit: '2mb', extended: false }));
calyCoder