Fix missing max-age cookie option (#2000)

This commit is contained in:
ekzyis 2025-03-20 16:38:13 -05:00 committed by GitHub
parent dbbd9477fd
commit a83783f008
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -19,6 +19,7 @@ const cookieOptions = (args) => ({
sameSite: 'lax',
// default expiration for next-auth JWTs is in 30 days
expires: datePivot(new Date(), { days: 30 }),
maxAge: 2592000, // 30 days in seconds
...args
})