mirror of
https://github.com/cfultz/mtgcsv.git
synced 2024-11-22 09:10:04 +01:00
25 lines
643 B
JavaScript
25 lines
643 B
JavaScript
self.addEventListener('install', (event) => {
|
|
event.waitUntil(
|
|
caches.open('mtg-csv-generator-v1').then((cache) => {
|
|
return cache.addAll([
|
|
'/',
|
|
'/index.html',
|
|
'/styles.css',
|
|
'/app.js',
|
|
'/manifest.json',
|
|
'/icon.png',
|
|
'/cash-money.mp3',
|
|
'/randomWords.js'
|
|
]);
|
|
})
|
|
);
|
|
});
|
|
|
|
self.addEventListener('fetch', (event) => {
|
|
event.respondWith(
|
|
caches.match(event.request).then((response) => {
|
|
return response || fetch(event.request);
|
|
})
|
|
);
|
|
});
|