Fix default production cookie value

This commit is contained in:
Bob Farrell 2024-11-24 21:14:28 +00:00
parent 937efd9121
commit 6bd0273e2d

View File

@ -160,7 +160,7 @@ pub const cookies: http.Cookies.CookieOptions = switch (environment) {
.production => .{
.secure = true,
.http_only = true,
.same_site = true,
.same_site = .lax,
.path = "/",
},
};