You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 31, 2021. It is now read-only.
Forgive me if this isn't the right place for this, but I can't find any documentation on this anywhere. I'm trying to add PWA functionality to my WordPress theme, and running in to issues understanding how to do the Service Worker side of things. I keep getting an error in Lighthouse "Failures: Manifest start_url is not cached by a Service Worker." and I'm not sure why.
My service worker is at /wp-content/themes/framework/assets/scripts/service-worker.js. The content is as follows:
// no service worker for previews
self.addEventListener("fetch", (event) => {
if (event.request.url.match(/preview=true/)) {
return;
}
});
toolbox.precache(["/", "../styles/modern.css"]);
toolbox.router.get("../media/*", toolbox.cacheFirst);
toolbox.router.get("/wp-content/uploads/**/*", toolbox.cacheFirst);
toolbox.router.get("/**/*", toolbox.networkFirst, {NetworkTimeoutSeconds: 5});
My manifest is at /wp-content/themes/framework/manifest.json. The contents:
Forgive me if this isn't the right place for this, but I can't find any documentation on this anywhere. I'm trying to add PWA functionality to my WordPress theme, and running in to issues understanding how to do the Service Worker side of things. I keep getting an error in Lighthouse "Failures: Manifest start_url is not cached by a Service Worker." and I'm not sure why.
My service worker is at
/wp-content/themes/framework/assets/scripts/service-worker.js
. The content is as follows:My manifest is at
/wp-content/themes/framework/manifest.json
. The contents:As you can see, I have my
start_url
set to/
, and I have/
also included in the service worker'sprecache
. What am I doing wrong?The text was updated successfully, but these errors were encountered: