Check if service worker is available in browser before tying to register

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel 2021-05-12 18:24:38 +02:00
parent 80f951680f
commit 7e7bbacbbf
No known key found for this signature in database
GPG Key ID: A061B9DDE0CA0773

View File

@ -2,8 +2,8 @@
import { register } from "register-service-worker"; import { register } from "register-service-worker";
// if (process.env.NODE_ENV === "production") { if ("serviceWorker" in navigator && isProduction()) {
register(`${process.env.BASE_URL}service-worker.js`, { register(`${process.env.BASE_URL}service-worker.js`, {
ready() { ready() {
console.log( console.log(
"App is being served from cache by a service worker.\n" + "App is being served from cache by a service worker.\n" +
@ -30,5 +30,10 @@ register(`${process.env.BASE_URL}service-worker.js`, {
error(error) { error(error) {
console.error("Error during service worker registration:", error); console.error("Error during service worker registration:", error);
}, },
}); });
// } }
function isProduction(): boolean {
// return true;
return process.env.NODE_ENV === "production";
}