Skip to content

Instantly share code, notes, and snippets.

@AaronO
Last active August 1, 2021 03:33
Show Gist options
  • Save AaronO/945835bc5205760e046923bd4ec236e7 to your computer and use it in GitHub Desktop.
Save AaronO/945835bc5205760e046923bd4ec236e7 to your computer and use it in GitHub Desktop.
addEventListener("fetch", (event) => {
const response = new Response("🦕 are back !", {
headers: { "content-type": "text/plain; charset=UTF-8" },
});
event.respondWith(response);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment