mirror of
https://github.com/cfultz/mtgcsv.git
synced 2024-11-24 10:00:04 +01:00
Removing service-worker.js
This commit is contained in:
parent
8fedcefb4b
commit
e3e2bcab76
@ -1,24 +0,0 @@
|
|||||||
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);
|
|
||||||
})
|
|
||||||
);
|
|
||||||
});
|
|
Loading…
Reference in New Issue
Block a user