@ -2,38 +2,53 @@
import { register } from "register-service-worker" ;
// Only register service worker if explicitly enabled and in production
// Add debug logging for environment variables
console . log ( '[ServiceWorker] Environment variables:' , {
VITE_PWA_ENABLED : process.env.VITE_PWA_ENABLED ,
NODE_ENV : process.env.NODE_ENV ,
BASE_URL : process.env.BASE_URL ,
CAN_REGISTER : process.env.VITE_PWA_ENABLED === "true" && process . env . NODE_ENV === "production"
} ) ;
// Modified condition to handle both string and boolean true
if (
process . env . VITE_PWA_ENABLED === "true" &&
process . env . NODE_ENV === "production"
) {
register ( ` ${ process . env . BASE_URL } sw.js ` , {
console . log ( '[ServiceWorker] Attempting to register service worker...' ) ;
// Use '/' as fallback if BASE_URL is undefined
const baseUrl = process . env . BASE_URL || '/' ;
register ( ` ${ baseUrl } sw.js ` , {
ready() {
console . log ( "Service worker is active." ) ;
console . log ( "[ServiceWorker] Service worker is active." ) ;
} ,
registered() {
console . log ( "Service worker has been registered." ) ;
registered ( registration ) {
console . log ( "[ServiceWorker] Service worker has been registered:" , registration ) ;
} ,
cached() {
console . log ( "Content has been cached for offline use." ) ;
cached ( registration ) {
console . log ( "[ServiceWorker] Content has been cached for offline use:" , registration ) ;
} ,
updatefound() {
console . log ( "New content is downloading." ) ;
updatefound ( registration ) {
console . log ( "[ServiceWorker] New content is downloading:" , registration ) ;
} ,
updated() {
console . log ( "New content is available; please refresh." ) ;
updated ( registration ) {
console . log ( "[ServiceWorker] New content is available:" , registration ) ;
} ,
offline() {
console . log (
"No internet connection found. App is running in offline mode." ,
) ;
console . log ( "[ServiceWorker] No internet connection found. App is running in offline mode." ) ;
} ,
error ( error ) {
console . error ( "Error during service worker registration:" , error ) ;
console . error ( "[ServiceWorker] Error during service worker registration:" , error ) ;
} ,
} ) ;
} else {
console . log (
"Service worker registration skipped - not enabled or not in production" ,
"[ServiceWorker] Registration skipped:" ,
{
enabled : process.env.VITE_PWA_ENABLED === "true" ,
production : process.env.NODE_ENV === "production" ,
value : process.env.VITE_PWA_ENABLED ,
type : typeof process . env . VITE_PWA_ENABLED
}
) ;
}