Revelav3/public/sw.js
MotorTruck1221 4f67411488 Fixes
This fixes the service worker not registering, and the config for UV
2023-12-21 01:22:57 -07:00

7 lines
234 B
JavaScript

importScripts("/uv/uv.bundle.js");
importScripts("/uv/uv.config.js");
importScripts(__uv$config.sw || "/uv/uv.sw.js");
const sw = new UVServiceWorker();
self.addEventListener("fetch", (event) => event.respondWith(sw.fetch(event)));