firebase-messaging-sw.js 258 B

12345
  1. self.addEventListener('push', event => {
  2. const data = event.data.json();
  3. console.log('[SW] PUSH', data);
  4. event.waitUntil(self.registration.showNotification(data.notification.title, { body: data.notification.body, icon: data.notification.image }));
  5. });