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";
|
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";
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue