We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Due to changes in third-party cookie policy (https://developers.google.com/privacy-sandbox/cookies), one of possibility is set partitioned cookie attribute (https://developers.google.com/privacy-sandbox/cookies/chips).
partitioned
https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie#partitioned.
interface Cookie { ... partitioned?: boolean, }
Current workaround:
... cookie: { path: '/; Partitioned', },
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
Due to changes in third-party cookie policy (https://developers.google.com/privacy-sandbox/cookies), one of possibility is set
partitioned
cookie attribute (https://developers.google.com/privacy-sandbox/cookies/chips).https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie#partitioned.
Proposed solution
Additional details
Current workaround:
The text was updated successfully, but these errors were encountered: