From 45ea9ea6e7c4b6328aeb6f3b145824668330e1ed Mon Sep 17 00:00:00 2001 From: saharbolboliankhah Date: Wed, 29 Oct 2025 10:48:26 +0330 Subject: [PATCH] fix(uploader): test uploader limiter --- src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.ts b/src/main.ts index 775a112..a7c7f89 100644 --- a/src/main.ts +++ b/src/main.ts @@ -15,7 +15,7 @@ async function bootstrap() { const logger = new Logger("APP"); const fastifyAdapter = new FastifyAdapter({ - bodyLimit: 10 * 1024 * 1024, + bodyLimit: 150 * 1024 * 1024, trustProxy: true, });