self.addEventListener('push', event => { const data = event.data.json(); self.registration.showNotification(data.title, { body: data.body, icon: 'your-cool-icon.png' // Optional: replace with an image URL if you want }); });