forked from potsda.mn/mobilizon
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:
parent
80f951680f
commit
7e7bbacbbf
|
@ -2,8 +2,8 @@
|
|||
|
||||
import { register } from "register-service-worker";
|
||||
|
||||
// if (process.env.NODE_ENV === "production") {
|
||||
register(`${process.env.BASE_URL}service-worker.js`, {
|
||||
if ("serviceWorker" in navigator && isProduction()) {
|
||||
register(`${process.env.BASE_URL}service-worker.js`, {
|
||||
ready() {
|
||||
console.log(
|
||||
"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) {
|
||||
console.error("Error during service worker registration:", error);
|
||||
},
|
||||
});
|
||||
// }
|
||||
});
|
||||
}
|
||||
|
||||
function isProduction(): boolean {
|
||||
// return true;
|
||||
return process.env.NODE_ENV === "production";
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue