fix(service-worker): Install service worker correctly (#222)

* fix(service-worker): register service worker immediately
This commit is contained in:
Jeremy Kahn 2023-12-11 19:27:19 -06:00 committed by GitHub
parent d697aa0482
commit d546fef71c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -31,7 +31,6 @@ export function register(config) {
return
}
window.addEventListener('load', () => {
const swUrl = `${process.env.PUBLIC_URL}/service-worker.js`
if (isLocalhost) {
@ -50,7 +49,6 @@ export function register(config) {
// Is not localhost. Just register service worker
registerValidSW(swUrl, config)
}
})
}
}