Created
November 3, 2020 03:05
-
-
Save picsoung/e45b08f5378c246b4ebcf7de8d3b731c to your computer and use it in GitHub Desktop.
Simple Cloudflare worker code to point a domain to a typeform
This file contains 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
//Replace with yours | |
let TYPEFORM_URL = "https://picsoung.typeform.com/to/QXS2h1?utm_source=cf_workers" | |
addEventListener('fetch', event => { | |
event.respondWith(handleRequest(event.request)) | |
}) | |
async function handleRequest(request) { | |
let response = await fetch(TYPEFORM_URL) | |
response = new Response(response.body, response); | |
return new HTMLRewriter() | |
.transform(response); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment