Last active
August 1, 2021 03:33
-
-
Save AaronO/945835bc5205760e046923bd4ec236e7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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