Skip to content

Instantly share code, notes, and snippets.

View mntnrk's full-sized avatar
🏠
Working from home

mntnrk

🏠
Working from home
View GitHub Profile
@tobiaslins
tobiaslins / worker.js
Last active May 15, 2024 01:20
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",