From 0f0c444ab8b68669383943ed159c12fc6d1e2722 Mon Sep 17 00:00:00 2001 From: Nuri Hodges Date: Thu, 9 Nov 2023 16:17:44 +0100 Subject: [PATCH] chore: update cookie options snippet (#9095) --- docs/docs/configuration/options.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/docs/configuration/options.md b/docs/docs/configuration/options.md index 7d718e9abc..c44b21f50b 100644 --- a/docs/docs/configuration/options.md +++ b/docs/docs/configuration/options.md @@ -472,7 +472,7 @@ cookies: { httpOnly: true, sameSite: 'lax', path: '/', - secure: useSecureCookies, + secure: true, maxAge: 900 } }, @@ -482,7 +482,7 @@ cookies: { httpOnly: true, sameSite: "lax", path: "/", - secure: useSecureCookies, + secure: true, maxAge: 900 }, }, @@ -492,7 +492,7 @@ cookies: { httpOnly: true, sameSite: "lax", path: "/", - secure: useSecureCookies, + secure: true, }, }, }