fix: incremented session timeout to 14 days (without a login)

This commit is contained in:
averel10
2026-04-10 08:39:31 +02:00
parent fe279f649c
commit 6302ca56ae

View File

@@ -19,6 +19,9 @@ export const auth = betterAuth({
} }
} }
}, },
session: {
expiresIn: 60 * 60 * 24 * 14, // 14 days
},
emailAndPassword: { emailAndPassword: {
enabled: true, enabled: true,
}, },