We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9921903 commit 2e45932Copy full SHA for 2e45932
apps/backend/src/main.ts
@@ -19,8 +19,8 @@ async function bootstrap() {
19
app.enableShutdownHooks();
20
app.useGlobalPipes(new ValidationPipe());
21
app.useGlobalInterceptors(new ClassSerializerInterceptor(app.get(Reflector)));
22
-
23
- // TODO: Remove `as any` when type definitions are fixed
+ // TODO: Remove `as any` when type definitions of "@fastify/secure-session" package are fixed
+ /* eslint-disable @typescript-eslint/no-explicit-any */
24
await app.register(fastifySecureSession as any, {
25
expiry: configService.get("session.expiry"),
26
cookieName: configService.get("session.cookieName"),
0 commit comments