-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsw.js
More file actions
29 lines (27 loc) · 627 Bytes
/
sw.js
File metadata and controls
29 lines (27 loc) · 627 Bytes
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
const CACHE_NAME = '010io-nexus-v1';
const urlsToCache = [
'/',
'/assets/css/enhanced-styles.css',
'/assets/js/github-integration.js',
'/assets/js/web-llm-chat.js',
'/assets/js/auto-update-portfolio.js',
'/manifest.json'
];
self.addEventListener('install', event => {
event.waitUntil(
caches.open(CACHE_NAME)
.then(cache => cache.addAll(urlsToCache))
);
});
self.addEventListener('fetch', event => {
event.respondWith(
caches.match(event.request)
.then(response => {
if (response) {
return response;
}
return fetch(event.request);
}
)
);
});