change back the check for adding a service worker because tests would get constant errors

This commit is contained in:
2024-08-12 09:23:25 -06:00
parent 06d9052386
commit 8c652ab29b

View File

@@ -2,8 +2,8 @@
import { register } from "register-service-worker";
// This used to be only done when: import.meta.env.NODE_ENV === "production"
register("/sw_scripts-combined.js", {
if (import.meta.env.NODE_ENV === "production") {
register("/sw_scripts-combined.js", {
ready() {
console.log(
"App is being served from cache by a service worker.\n" +
@@ -30,4 +30,5 @@ register("/sw_scripts-combined.js", {
error(error) {
console.error("Error during service worker registration:", error);
},
});
});
}