Accessing Cookies in Safari from manifest file on prod
Unanswered
Barbary Lion posted this in #help-forum
Barbary LionOP
Hello, as the title suggests, I need to access a cookie in the manifest file and set it in the start_url. This works fine in local development and when the app is built on my machine. However, once deployed, when I try to add the app to the home screen in iPhone Safari, the cookie value is not included in the start_url. what could possibly prevent this from showing in deployed site ?
this is cookie settings , using latest Next
cookieStore.set("cookie", cookie, {
httpOnly: true,
expires: expiresAt,
sameSite: "strict",
path: "/"
})
this is cookie settings , using latest Next
cookieStore.set("cookie", cookie, {
httpOnly: true,
expires: expiresAt,
sameSite: "strict",
path: "/"
})