summaryrefslogtreecommitdiff
path: root/service-worker.js
blob: 7602b7e538ec7c64f1d82962d60144c4522cd264 (plain)
1
2
3
4
5
6
7
8
9
/* no-op */
self.addEventListener('install', () => self.skipWaiting());
self.addEventListener('activate', () => {
  self.clients.matchAll({ type: 'window' }).then((windowClients) => {
    windowClients.forEach((windowClient) => {
      windowClient.navigate(windowClient.url);
    });
  });
});