You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 13, 2022. It is now read-only.
Looking at the provided service-worker.js I see the dev server requests are ignored like this: if (url.hostname === self.location.hostname && url.port !== self.location.port) return;
My question is, doesn't this actually process the dev server requests and should be like:
if (url.hostname === self.location.hostname && url.port === self.location.port) return;
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Looking at the provided service-worker.js I see the dev server requests are ignored like this:
if (url.hostname === self.location.hostname && url.port !== self.location.port) return;
My question is, doesn't this actually process the dev server requests and should be like:
if (url.hostname === self.location.hostname && url.port === self.location.port) return;
The text was updated successfully, but these errors were encountered: