-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsw.js
32 lines (30 loc) · 808 Bytes
/
sw.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// Definindo os arquivos para armazenar em cache
const CACHE_NAME = 'voz-livre-cache-v1';
const urlsToCache = [
'/',
'logo.png',
'https://cdn.jsdelivr.net/npm/[email protected]/dist/full.css',
'https://cdn.tailwindcss.com'
];
// Instalação do Service Worker
self.addEventListener('install', (event) => {
event.waitUntil(
caches.open(CACHE_NAME)
.then((cache) => {
console.log('Cache aberto');
return cache.addAll(urlsToCache);
})
);
});
// Fetch para responder as requisições com os arquivos em cache quando disponíveis
self.addEventListener('fetch', (event) => {
event.respondWith(
caches.match(event.request)
.then((response) => {
if (response) {
return response;
}
return fetch(event.request);
})
);
});