This repository has been archived on 2026-02-28. You can view files and clone it, but cannot push or open issues or pull requests.
2025-12-07 23:21:40 +02:00

10 lines
277 B
JavaScript

self.addEventListener('push', function (event) {
if (!event.data) return;
const data = event.data.json();
const title = data.title || "Discord";
const options = { body: data.body };
event.waitUntil(self.registration.showNotification(title, options));
});