WebPush

Anonymous
plain_text
12/27/2023 12:28 PM
420 B
18
Indexable
self.addEventListener('install', (event) => {
  console.log('SW Registered:', { event });

  self.skipWaiting();
});

self.addEventListener('push', function(event) {
  const data = event.data.json();
  
  console.log(data);

  event.waitUntil(self.registration.showNotification(data.notification.title, data));
});
Editor is loading...
Leave a Comment