There's a few things to cover here: Multiple Service Workers in a Single Scope There can only be one active service worker for a given scope. If you attempt to register two different service worker scripts that each have the same scope, the second registration will trigger the service worker update flow: // There's an implied default scope of '/'. // See https://stackoverflow.com/a/33881341/385997