2022-06-05 21:11:21 +00:00
|
|
|
import { deleteCaches } from "./cache-utils";
|
|
|
|
|
2022-06-01 21:56:37 +00:00
|
|
|
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();
|
|
|
|
}
|
2022-06-05 21:11:21 +00:00
|
|
|
|
|
|
|
await deleteCaches();
|
2022-06-01 21:56:37 +00:00
|
|
|
}
|