Skip to content

Commit

Permalink
chore: update cookie options snippet (#9095)
Browse files Browse the repository at this point in the history
  • Loading branch information
nhodges committed Nov 9, 2023
1 parent fbd68a1 commit 0f0c444
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/docs/configuration/options.md
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@ cookies: {
httpOnly: true,
sameSite: 'lax',
path: '/',
secure: useSecureCookies,
secure: true,
maxAge: 900
}
},
Expand All @@ -482,7 +482,7 @@ cookies: {
httpOnly: true,
sameSite: "lax",
path: "/",
secure: useSecureCookies,
secure: true,
maxAge: 900
},
},
Expand All @@ -492,7 +492,7 @@ cookies: {
httpOnly: true,
sameSite: "lax",
path: "/",
secure: useSecureCookies,
secure: true,
},
},
}
Expand Down

1 comment on commit 0f0c444

@vercel
Copy link

@vercel vercel bot commented on 0f0c444 Nov 9, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.