/* eslint-disable no-console */ import { register } from 'register-service-worker' import { setNotificationInstance, notify } from './utils/notification' if (process.env.NODE_ENV === 'production') { register(`${process.env.BASE_URL}service-worker.js`, { ready(sw) { console.log('App is being served from cache by a service worker') setNotificationInstance((title, options?) => sw.showNotification(title, options) ) }, registered() { console.log('Service worker has been registered.') }, cached() { console.log('Content has been cached for offline use.') }, updatefound() { console.log('New content is downloading.') }, updated(sw) { console.log('New content is available; please refresh.') setNotificationInstance((title, options?) => sw.showNotification(title, options) ) notify('Une nouvelle version est disponible.', { body: 'Rafraichissez la page pour mettre à jour.' }) }, offline() { console.log( 'No internet connection found. App is running in offline mode.' ) }, error(error) { console.error('Error during service worker registration:', error) } }) }