feat: cookie persistence

:funnythumbsup:
This commit is contained in:
Jack W. 2024-03-07 21:12:37 -05:00
parent c87316cbc7
commit 756077148a
No known key found for this signature in database

View file

@ -64,7 +64,8 @@ export default function (files: Files) {
path: "/",
sameSite: "Strict",
secure: true,
httpOnly: true
httpOnly: true,
maxAge: 3 * 24 * 60 * 60 * 1000,
})
return ctx.text("")
})