Skip to content

Instantly share code, notes, and snippets.

View ivalsaraj's full-sized avatar
💭
Making ✨awesome things that helps ✨super awesome people 👩‍💻

Valsaraj R ivalsaraj

💭
Making ✨awesome things that helps ✨super awesome people 👩‍💻
View GitHub Profile
@ivalsaraj
ivalsaraj / worker.js
Created November 15, 2020 10:16 — forked from tobiaslins/worker.js
Notion Custom Domain using Cloudflare Workers + Splitbee Analytics
const MY_DOMAIN = "help.splitbee.io"
const START_PAGE = "https://www.notion.so/splitbee/Help-Center-bbf26e2b70574901b9c98e5d11e449de"
addEventListener('fetch', event => {
event.respondWith(fetchAndApply(event.request))
})
const corsHeaders = {
"Access-Control-Allow-Origin": "*",
"Access-Control-Allow-Methods": "GET, HEAD, POST,PUT, OPTIONS",