Skip to content

Commit

Permalink
session expiration to 12 hours
Browse files Browse the repository at this point in the history
  • Loading branch information
davidsingal authored and alexeh committed Dec 15, 2023
1 parent 23c1db5 commit d2996e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/pages/api/auth/[...nextauth].ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export const options: NextAuthOptions = {

session: {
strategy: 'jwt',
maxAge: 2 * 60 * 60, // 2 hours
maxAge: 12 * 60 * 60, // 12 hours
},
// Configure one or more authentication providers
providers: [
Expand Down

1 comment on commit d2996e8

@vercel
Copy link

@vercel vercel bot commented on d2996e8 Dec 15, 2023

Choose a reason for hiding this comment

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

Successfully deployed to the following URLs:

landgriffon-client – ./client

landgriffon-client-git-dev-vizzuality1.vercel.app
landgriffon-client-vizzuality1.vercel.app
landgriffon-client.vercel.app

Please sign in to comment.