mirror of
https://github.com/Wessel/portfolio.git
synced 2026-07-19 15:05:14 +02:00
17 lines
380 B
JavaScript
17 lines
380 B
JavaScript
importScripts('/cache-polyfill.js');
|
|
|
|
self.addEventListener('install', function(e) {
|
|
e.waitUntil(
|
|
caches.open('airhorner').then(function(cache) {
|
|
return cache.addAll([
|
|
'/',
|
|
'/index.html',
|
|
'/index.html?homescreen=1',
|
|
'/?homescreen=1',
|
|
'/styles/main.css',
|
|
'/scripts/main.min.js',
|
|
'/sounds/airhorn.mp3'
|
|
]);
|
|
})
|
|
);
|
|
}); |