I have a test app (React front end on Netlify and Node Js Back End on Heroku). Finally, i have two different domains. Due to new Chrome Update i know i have to set the Secure Option if my SameSite Option is set as 'None'.
server.express.use(session({
name: 'sessionID',
secret: process.env.TOKEN,
resave: true,
saveUninitialized: false,
cookie: {secure: true, sameSite: 'None', proxy: true}
}))
But with this configuration, on Safari my cookie is received as SameSite='Strict'. How i can solve this ?
Thank you.