fix: Cookies not being set due to not using HTTPS

This commit is contained in:
Shahrad Elahi 2024-05-29 20:50:01 +03:30
parent 93a923acf8
commit 9c7b7317c1
No known key found for this signature in database

View File

@ -43,6 +43,7 @@ export const actions: Actions = {
cookies.set(AUTH_COOKIE, token, {
maxAge: hour,
httpOnly: true,
secure: false,
path: '/',
});