We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13534fa commit 77ad73dCopy full SHA for 77ad73d
src/node/http.ts
@@ -526,9 +526,12 @@ export class HttpServer {
526
"Set-Cookie": [
527
`${payload.cookie.key}=${payload.cookie.value}`,
528
`Path=${normalize(payload.cookie.path || "/", true)}`,
529
+ request.headers.host ? `Domain=${request.headers.host}` : undefined,
530
// "HttpOnly",
531
"SameSite=strict",
- ].join(";"),
532
+ ]
533
+ .filter((l) => !!l)
534
+ .join(";"),
535
}
536
: {}),
537
...payload.headers,
0 commit comments