11 lines
294 B
TypeScript
11 lines
294 B
TypeScript
|
declare let self: ServiceWorkerGlobalScope;
|
||
|
|
||
|
export default async function handleActivate(event: ExtendableEvent) {
|
||
|
console.debug("Service worker activated");
|
||
|
// @ts-ignore
|
||
|
if (self.registration.navigationPreload) {
|
||
|
// @ts-ignore
|
||
|
await self.registration.navigationPreload.enable();
|
||
|
}
|
||
|
}
|