From 5fa11b135bee18689d7fd6b9c8ef32c2549bfc8a Mon Sep 17 00:00:00 2001 From: Artem Fedotov Date: Tue, 5 Sep 2023 20:12:27 +0300 Subject: [PATCH] Updated cookies.md with register signature at 9.0.4 we should return a callback, or we've got a ts error: TS2345: Argument of type 'typeof fastifyCookie' is not assignable to parameter of type 'FastifyPluginCallback | FastifyPluginAsync | Promise{ default: FastifyPluginCallback ; }> | Promise...>'. --- content/techniques/cookies.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/techniques/cookies.md b/content/techniques/cookies.md index 8d203c6e5a..abed4faef8 100644 --- a/content/techniques/cookies.md +++ b/content/techniques/cookies.md @@ -71,7 +71,7 @@ const app = await NestFactory.create( AppModule, new FastifyAdapter(), ); -await app.register(fastifyCookie, { +await app.register(() => fastifyCookie, { secret: 'my-secret', // for cookies signature }); ```