2020-09-10 16:39:01 +00:00
|
|
|
import { register } from 'register-service-worker';
|
|
|
|
|
|
|
|
register('/service-worker.js', {
|
|
|
|
registrationOptions: { scope: './' },
|
2020-10-24 17:12:13 +00:00
|
|
|
// ready(registration) {
|
|
|
|
// console.log('Service worker is active.');
|
|
|
|
// },
|
|
|
|
// registered(registration) {
|
|
|
|
// console.log('Service worker has been registered.');
|
|
|
|
// },
|
|
|
|
// cached(registration) {
|
|
|
|
// console.log('Content has been cached for offline use.');
|
|
|
|
// },
|
|
|
|
// updatefound(registration) {
|
|
|
|
// console.log('New content is downloading.');
|
|
|
|
// },
|
|
|
|
// updated(registration) {
|
|
|
|
// console.log('New content is available; please refresh.');
|
|
|
|
// },
|
2020-09-10 16:39:01 +00:00
|
|
|
offline() {
|
|
|
|
console.log(
|
|
|
|
'No internet connection found. App is running in offline mode.'
|
|
|
|
);
|
|
|
|
},
|
|
|
|
error(error) {
|
|
|
|
console.error('Error during service worker registration:', error);
|
|
|
|
},
|
|
|
|
});
|