chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 13:32:57 +08:00
commit cd420f9332
4811 changed files with 884702 additions and 0 deletions
@@ -0,0 +1,10 @@
// Updates the protocol of the request url to match the request.headers x-forwarded-proto
export function requestUrl(request: Request): URL {
const url = new URL(request.url);
if (request.headers.get("x-forwarded-proto") === "https") {
url.protocol = "https:";
}
return url;
}