2023-03-07 03:54:26 +00:00
|
|
|
// This is the "Offline page" service worker
|
|
|
|
|
2023-07-05 15:41:17 -05:00
|
|
|
importScripts(
|
|
|
|
"https://storage.googleapis.com/workbox-cdn/releases/5.1.2/workbox-sw.js"
|
|
|
|
);
|
2023-03-07 03:54:26 +00:00
|
|
|
|
2023-03-09 01:50:32 +00:00
|
|
|
const CACHE = "crafty-controller";
|
2023-03-07 03:54:26 +00:00
|
|
|
|
2023-09-20 19:45:14 -05:00
|
|
|
//This service worker is basically just here to make browsers
|
|
|
|
//accept the PWA. It's not doing much anymore
|
|
|
|
|
2023-03-07 03:54:26 +00:00
|
|
|
if (workbox.navigationPreload.isSupported()) {
|
2023-07-05 15:41:17 -05:00
|
|
|
workbox.navigationPreload.enable();
|
2023-03-07 03:54:26 +00:00
|
|
|
}
|