mirror of
https://github.com/Astatin3/unshell.git
synced 2026-06-09 06:47:59 -06:00
26 lines
602 B
JavaScript
26 lines
602 B
JavaScript
var cacheName = "egui-template-pwa";
|
|
var filesToCache = [
|
|
"./",
|
|
"./index.html",
|
|
"./eframe_template.js",
|
|
"./eframe_template_bg.wasm",
|
|
];
|
|
|
|
/* Start the service worker and cache all of the app's content */
|
|
self.addEventListener("install", function (e) {
|
|
e.waitUntil(
|
|
caches.open(cacheName).then(function (cache) {
|
|
return cache.addAll(filesToCache);
|
|
}),
|
|
);
|
|
});
|
|
|
|
/* Serve cached content when offline */
|
|
self.addEventListener("fetch", function (e) {
|
|
e.respondWith(
|
|
caches.match(e.request).then(function (response) {
|
|
return response || fetch(e.request);
|
|
}),
|
|
);
|
|
});
|