parfum/public/service-worker.js

15 lines
366 B
JavaScript

self.addEventListener('push', (event) => {
const notification = event.data.json();
event.waitUntil(
self.registration.showNotification(
notification.title, {
body: notification.body,
icon: 'assets/images/dark-logo.png',
data: {
url: notification.url
}
})
);
})