mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-18 06:44:46 -07:00
9 lines
259 B
JavaScript
9 lines
259 B
JavaScript
import { skipWaiting, clientsClaim } from 'workbox-core'
|
|
import { precacheAndRoute } from 'workbox-precaching'
|
|
import { Prefetcher } from '@layer0/prefetch/sw'
|
|
|
|
skipWaiting()
|
|
clientsClaim()
|
|
precacheAndRoute(self.__WB_MANIFEST || [])
|
|
|
|
new Prefetcher().route()
|