Skip to content

Instantly share code, notes, and snippets.

View mordka's full-sized avatar
🌏
The future is now.

mordka mordka

🌏
The future is now.
View GitHub Profile
@mordka
mordka / service-worker-ghost-cms.js
Last active July 1, 2022 11:42 — forked from deanhume/service-worker-ghost-cms.js
Service Worker for Ghost CMS - ignore Ghost admin
const cacheName = 'blogCache';
const offlineUrl = '/offline/';
const adminPageSlug = '/ghost';
/**
* The event listener for the service worker installation
*/
self.addEventListener('install', event => {
event.waitUntil(
caches.open(cacheName)