update api max url length

This commit is contained in:
Carl-Gerhard Lindesvärd
2024-05-13 14:37:28 +02:00
parent ee83a6db6f
commit e800db7894

View File

@@ -30,7 +30,7 @@ const startServer = async () => {
logInfo('Starting server'); logInfo('Starting server');
try { try {
const fastify = Fastify({ const fastify = Fastify({
maxParamLength: 5000, maxParamLength: 15_000,
}); });
fastify.register(cors, { fastify.register(cors, {