mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-12-16 06:45:24 +01:00
9 lines
305 B
JavaScript
9 lines
305 B
JavaScript
/// <reference lib = "WebWorker" />
|
|
self.addEventListener('install', function () {
|
|
console.log('Service worker installing...');
|
|
});
|
|
|
|
self.addEventListener('activate', (event) => {
|
|
// @ts-expect-error: See https://github.com/microsoft/TypeScript/issues/14877
|
|
event.waitUntil(self.clients.claim());
|
|
}) |