From e800db78942543ac8665a336f7f6228e99a18a54 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carl-Gerhard=20Lindesva=CC=88rd?= Date: Mon, 13 May 2024 14:37:28 +0200 Subject: [PATCH] update api max url length --- apps/api/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/api/src/index.ts b/apps/api/src/index.ts index 2d698e35..bcf42127 100644 --- a/apps/api/src/index.ts +++ b/apps/api/src/index.ts @@ -30,7 +30,7 @@ const startServer = async () => { logInfo('Starting server'); try { const fastify = Fastify({ - maxParamLength: 5000, + maxParamLength: 15_000, }); fastify.register(cors, {