I noticed my session cookie has SameSite set to La...
# ory-network
f
I noticed my session cookie has SameSite set to Lax. Is there a way to change this to Strict?
l
Via Ory CLI:
Copy code
ory patch identity-config <project-id> \
  --replace '/session/cookie/same_site="Strict"'
That should do the trick.
🙏 1