I am using Cloudflare Pages with Next.js + Auth.js for OAuth. Every time I try to log in with (let's say) Google, it's not possible, because the callback response has the
session-token
session-token
cookie merged into the same
Set-Cookie
Set-Cookie
directive as
pkce.code_verifier
pkce.code_verifier
. On development I get two
Set-cookie
Set-cookie
headers instead of only one and it works as expected. How can I make sure those headers don't get merged?