mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-12-14 22:05:34 +01:00
7 lines
189 B
JavaScript
7 lines
189 B
JavaScript
self.addEventListener('install', function () {
|
|
console.log('Service worker installing...');
|
|
});
|
|
|
|
self.addEventListener('activate', (event) => {
|
|
event.waitUntil(self.clients.claim());
|
|
}) |