Event: onInstall
● Download contents depends on
deploy version
function onInstall(event) {
event.waitUntil(
caches.open(CACHE_NAME).then(function prefill(cache) {
return cache.addAll([
'',
'',
'/offline.html',
'',
'',
'',
'',
'',
'',
'',
'',
'',
]).then(function () {
console.log("WORKER: Install completed");
});
})
);
}