homer/worker.js

33 lines
1.0 KiB
JavaScript
Raw Normal View History

2019-02-18 09:23:20 +01:00
self.addEventListener('install', event => {
event.waitUntil(
caches
.open('homer')
.then(cache =>
cache.addAll([
'.',
'index.html',
'config.yml',
'app.css',
'app.js',
'vendors/js-yaml.min.js',
'assets/logo.png',
2019-10-08 23:35:40 +02:00
'https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css',
'https://cdnjs.cloudflare.com/ajax/libs/bulma/0.7.5/css/bulma.min.css',
'https://fonts.googleapis.com/css?family=Lato|Raleway&display=swap',
'https://cdn.jsdelivr.net/npm/vue@2.6.10/dist/vue.min.js',
2019-02-18 09:23:20 +01:00
])
)
)
})
self.addEventListener('fetch', event => {
event.respondWith(
caches.match(event.request).then(response => {
if (response) {
return response;
}
return fetch(event.request);
})
);
});