Skip to content

Instantly share code, notes, and snippets.

View gojomo's full-sized avatar

Gordon Mohr gojomo

View GitHub Profile
@gojomo
gojomo / notion-custom-domain.js
Created October 5, 2019 00:31 — forked from mayneyao/notion2blog.js
notion.so custom domain
const MY_DOMAIN = "your domain"
const START_PAGE = "start page url"
addEventListener('fetch', event => {
event.respondWith(fetchAndApply(event.request))
})
const corsHeaders = {
"Access-Control-Allow-Origin": "*",
"Access-Control-Allow-Methods": "GET, HEAD, POST,PUT, OPTIONS",