fastify router options

This commit is contained in:
Philipinho
2026-01-27 02:43:30 +00:00
parent f40f4daa1a
commit 66f11f85ec
@@ -12,9 +12,11 @@ async function bootstrap() {
const app = await NestFactory.create<NestFastifyApplication>( const app = await NestFactory.create<NestFastifyApplication>(
CollabAppModule, CollabAppModule,
new FastifyAdapter({ new FastifyAdapter({
routerOptions: {
maxParamLength: 1000,
ignoreTrailingSlash: true, ignoreTrailingSlash: true,
ignoreDuplicateSlashes: true, ignoreDuplicateSlashes: true,
maxParamLength: 500, },
}), }),
{ {
bufferLogs: true, bufferLogs: true,