This is regarding google chrome soon upcoming removal of 3rd party cookies, full resource: https://goog.gle/chips
For those of us who have SameSite=None
this may be breaking soon.
Put simply it seems that setting the cooking needs a new attribute: Partitioned;
How do i do that with Phoenix?
Currently in endpoint.ex :
@session_options [
store: :cookie,
key: "REDACTED",
signing_salt: "REDACTED",
same_site: "None",
secure: true
]