mirror of
https://gitlab.com/crafty-controller/crafty-4.git
synced 2025-01-22 19:25:28 +01:00
15 lines
371 B
JavaScript
15 lines
371 B
JavaScript
// This is the "Offline page" service worker
|
|
|
|
importScripts(
|
|
"https://storage.googleapis.com/workbox-cdn/releases/5.1.2/workbox-sw.js"
|
|
);
|
|
|
|
const CACHE = "crafty-controller";
|
|
|
|
//This service worker is basically just here to make browsers
|
|
//accept the PWA. It's not doing much anymore
|
|
|
|
if (workbox.navigationPreload.isSupported()) {
|
|
workbox.navigationPreload.enable();
|
|
}
|