Tree Central Hazard App
{
"name": "Tree Central Hazard App",
"short_name": "Hazard App",
"start_url": ".",
"display": "standalone",
"background_color": "#ffffff",
"theme_color": "#2e7d32",
"icons": [
{
"src": "icon-192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "icon-512.png",
"sizes": "512x512",
"type": "image/png"
}
]
}
self.addEventListener('install', e => {
e.waitUntil(
caches.open('tree-central-app').then(cache => {
return cache.addAll(['./']);
})
);
});
self.addEventListener('fetch', e => {
e.respondWith(
caches.match(e.request).then(response => response || fetch(e.request))
);
});