Compare commits

..

No commits in common. "3662ced22b06763b517ead5226124e1b0868c559" and "787fff6bb02a9de2383d4a0f985e444de222ae9f" have entirely different histories.

View File

@ -14,7 +14,6 @@ export default function AuthCallback() {
// Set cookie with 7 day expiration, accessible across all subdomains
setCookie("jwt_token", token, {
path: "/",
domain: "gophernest.net", // shared across all subdomains
maxAge: 60 * 60 * 24 * 7, // 7 days in seconds
secure: true,
sameSite: "lax",