UNPKG

@vite-pwa/create-pwa

Version:
29 lines (22 loc) 793 B
/// <reference lib="webworker" /> import { cleanupOutdatedCaches, createHandlerBoundToURL, precacheAndRoute } from 'workbox-precaching' import { NavigationRoute, registerRoute } from 'workbox-routing' declare let self: ServiceWorkerGlobalScope self.addEventListener('message', (event) => { if (event.data && event.data.type === 'SKIP_WAITING') self.skipWaiting() }) // self.__WB_MANIFEST is the default injection point precacheAndRoute(self.__WB_MANIFEST) // clean old assets cleanupOutdatedCaches() /** @type {RegExp[] | undefined} */ let allowlist // in dev mode, we disable precaching to avoid caching issues if (import.meta.env.DEV) allowlist = [/^\/$/] // to allow work offline registerRoute(new NavigationRoute( createHandlerBoundToURL('index.html'), { allowlist }, ))