diff --git a/scripts/gather.ts b/scripts/gather.ts index ea0aac4..d162efe 100644 --- a/scripts/gather.ts +++ b/scripts/gather.ts @@ -28,7 +28,9 @@ return url; }(); function makeURL(url: string) { - return new URL(url, baseURL); + const rv = new URL(url, baseURL); + rv.hash = ""; + return rv; } function sanitize(str: string | null | undefined) {