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({
ignoreTrailingSlash: true, routerOptions: {
ignoreDuplicateSlashes: true, maxParamLength: 1000,
maxParamLength: 500, ignoreTrailingSlash: true,
ignoreDuplicateSlashes: true,
},
}), }),
{ {
bufferLogs: true, bufferLogs: true,