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