e8e5b61404
* feat: added service worker and pwa optimizations * fix: added newline at the end of Gemfile.lock to match main branch * fix: fixed newline at the end of Gemfile.lock to match main branch
11 lines
No EOL
318 B
JavaScript
11 lines
No EOL
318 B
JavaScript
self.addEventListener('install', function(event) {
|
|
// registering service worker...
|
|
})
|
|
|
|
self.addEventListener('fetch', function(event) {
|
|
// intercepting requests to check for the file or data in the cache
|
|
})
|
|
|
|
self.addEventListener('activate', function(event) {
|
|
// service worker activated!
|
|
}) |