move copy files so src has same structure as dist

This commit is contained in:
Felix Schulze
2019-11-08 12:58:48 +01:00
parent 2286ab913f
commit f2ebec54ce
22 changed files with 0 additions and 0 deletions

53
src/sw.js Normal file
View File

@ -0,0 +1,53 @@
importScripts('/cache-polyfill.js');
self.addEventListener('install', function(e) {
e.waitUntil(
caches.open('meritkollen').then(function(cache) {
return cache.addAll([
'/',
'/index.html',
'/Ekonomi',
'/Estet',
'/Natur',
'/Samhäll',
'/Teknik',
'/Kontakt',
'/css/main.min.css',
'/img/tips.jpg ',
'/img/background.jpg ',
'/img/background85.webp ',
'/img/favicon/manifest.json',
'/img/favicon/android-chrome-192x192.png',
'/img/favicon/favicon-32x32.png',
'/img/favicon/favicon-16x16.png',
'/img/favicon/favicon.ico',
'/js/softscrollscript.js',
'/js/material.min.js',
'/js/smallScript.js',
'/js/modernizer-webp.js',
'https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js',
'https://fonts.googleapis.com/icon?family=Material+Icons',
'https://fonts.gstatic.com/s/materialicons/v48/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2',
'https://cdnjs.cloudflare.com/ajax/libs/materialize/0.98.2/fonts/roboto/Roboto-Regular.woff2',
'https://cdnjs.cloudflare.com/ajax/libs/materialize/0.98.2/fonts/roboto/Roboto-Regular.woff',
'https://cdnjs.cloudflare.com/ajax/libs/materialize/0.98.2/fonts/roboto/Roboto-Medium.woff2',
'https://cdnjs.cloudflare.com/ajax/libs/materialize/0.98.2/fonts/roboto/Roboto-Medium.woff',
'https://cdnjs.cloudflare.com/ajax/libs/materialize/0.98.2/fonts/roboto/Roboto-Light.woff2',
'https://cdnjs.cloudflare.com/ajax/libs/materialize/0.98.2/fonts/roboto/Roboto-Light.woff',
'https://cdnjs.cloudflare.com/ajax/libs/materialize/0.98.2/fonts/roboto/Roboto-Thin.woff2',
'https://cdnjs.cloudflare.com/ajax/libs/materialize/0.98.2/fonts/roboto/Roboto-Thin.woff',
'https://cdnjs.cloudflare.com/ajax/libs/materialize/0.98.2/css/materialize.min.css',
]);
})
);
});
self.addEventListener('fetch', function(event) {
//console.log(event.request.url);
event.respondWith(
caches.match(event.request).then(function(response) {
return response || fetch(event.request);
})
);
});