Some users of my website report that login not work when using the code-server embed in an iframe . This seems to be related to the [samesite setting adjusted in the latest version of chrome](https://securityboulevard.com/2019/05/samesite-cookies-by-default-in-chrome-76-and-above/). Is it possible to add an optional samesite option to setCookie to support the use of embedded in iframes? This adjustment only needs to add extra parameters when setcookie, like: ``` setcookie ('cross-site-cookie', 'name', ['samesite' => 'None', 'secure' => true]); ``` Thanks.