mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-09-24 15:33:29 +02: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());
|
|
}) |