Chrome is giving me the following warning:
A cookie associated with a cross-site resource at http://quilljs.com/ was set without the
SameSite
attribute. A future release of Chrome will only deliver cookies with cross-site requests if they are set withSameSite=None
andSecure
.
Note that quilljs.com is a 3rd party domain.
I have seen these questions, the answers on both questions are similar, some say something like this:
nothing to do with your code. its something their web servers will have to support.
While others provide an answer like this:
response.setHeader("Set-Cookie", "HttpOnly;Secure;SameSite=Strict");
I am not sure if this is something that I need to fix in my website, or is it something that should be fixed on the 3rd party library?