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
1 changed files with 35 additions and 30 deletions

View File

@ -2,7 +2,7 @@
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`, {
ready() {
console.log(
@ -31,4 +31,9 @@ register(`${process.env.BASE_URL}service-worker.js`, {
console.error("Error during service worker registration:", error);
},
});
// }
}
function isProduction(): boolean {
// return true;
return process.env.NODE_ENV === "production";
}