Try setting serviceWorker to false in plugin to unregister SW

This commit is contained in:
arkon 2020-06-08 21:41:51 -04:00
parent 95e4c8302e
commit 1e4febb436
3 changed files with 2 additions and 16 deletions

View File

@ -18,7 +18,6 @@ module.exports = {
// Custom headers
["link", { rel: "preconnect", href: "https://fonts.gstatic.com", crossorigin:""}],
["link", { rel: "stylesheet", href: "https://fonts.googleapis.com/css?family=Open+Sans"}],
["script", {src: "/scripts/remove_service_worker.js"}]
],
themeConfig: {

View File

@ -9,8 +9,8 @@ module.exports = [
[
"@vuepress/pwa",
{
serviceWorker: true,
updatePopup: true,
serviceWorker: false,
updatePopup: false,
},
],
[

View File

@ -1,13 +0,0 @@
if ("serviceWorker" in navigator) {
console.log("Checking for service worker...");
navigator.serviceWorker.getRegistrations().then(function (registrations) {
if (registrations.length < 1) {
console.log("Found no service worker!");
return;
}
registrations.forEach((registration) => {
registration.unregister();
console.log("Removed service worker!");
});
});
}