Skip to content

Instantly share code, notes, and snippets.

@vfarid
Created February 14, 2023 07:04
Show Gist options
  • Save vfarid/9bbd75347e3febe38e29fc69357450b5 to your computer and use it in GitHub Desktop.
Save vfarid/9bbd75347e3febe38e29fc69357450b5 to your computer and use it in GitHub Desktop.
addEventListener("fetch", event => {
var url = new URL(event.request.url)
var newUrl = new URL("https://" + url.pathname.replace(/^\/|\/$/g, ''))
var request = new Request(newUrl, event.request)
event.respondWith(fetch(request))
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment