From 10cf9635184940364a0cea53dd0f31deb65d9c5e Mon Sep 17 00:00:00 2001 From: nmorasb Date: Wed, 22 May 2024 13:01:43 -0400 Subject: [PATCH] MAT-7188: bump size to 500MB --- src/main.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.ts b/src/main.ts index f68c25f..01c4100 100644 --- a/src/main.ts +++ b/src/main.ts @@ -6,8 +6,8 @@ export async function bootstrap() { const app = await NestFactory.create(ExportModule, { logger: ['error', 'log'], }); - app.use(bodyParser.json({ limit: '50mb' })); - app.use(bodyParser.urlencoded({ limit: '50mb', extended: true })); + app.use(bodyParser.json({ limit: '500mb' })); + app.use(bodyParser.urlencoded({ limit: '500mb', extended: true })); app.setGlobalPrefix('/api'); app.enableCors({ origin: [