Merge pull request #3051 from naveennamani/patch-1

Fixes #3050 - URLs sensitive to trailing slash
This commit is contained in:
Hongbo Wu 2023-11-01 15:48:04 +08:00 committed by GitHub
commit ffad064d3a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -385,6 +385,7 @@ export const cleanUrl = (url: string) => {
stripHash: true,
stripWWW: false,
removeQueryParameters: trackingParams,
removeTrailingSlash: false,
})
}