Skip to content

Instantly share code, notes, and snippets.

@discountry
Last active August 13, 2022 16:02
Show Gist options
  • Select an option

  • Save discountry/a0d7d73dd8dec16254d3399d13a9e767 to your computer and use it in GitHub Desktop.

Select an option

Save discountry/a0d7d73dd8dec16254d3399d13a9e767 to your computer and use it in GitHub Desktop.
addEventListener(
"fetch", event => {
let url = new URL(event.request.url);
url.hostname = "your.domain.com";
url.protocol = "https";
let request = new Request(url, event.request);
event.respondWith(
fetch(request)
)
}
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment