Skip to content

Commit

Permalink
MAT-7188: bump size to 500MB
Browse files Browse the repository at this point in the history
  • Loading branch information
nmorasb committed May 22, 2024
1 parent 6b76ec9 commit 10cf963
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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: [
Expand Down

0 comments on commit 10cf963

Please sign in to comment.