Closed yoh-extradat closed 1 year ago
@yoh-extradat
Hey, sorry for the late response!
Can you try setting the secure
cookie option to false? I think safari blocks it when not on https
export const handle = handleSession({
secret: 'SOME_COMPLEX_SECRET_AT_LEAST_32_CHARS',
cookie: {
secure: false
}
});
The default for cookie.secure
is now false while in dev
Setup everything according to docs and it works like a charm on chrome, firefox and edge. However the cookie will not be set on safari. Any ideas why or how to solve this issue?