Description
Is this a bug report?
Yes
Can you also reproduce the problem with npm 4.x?
Yes
Which terms did you search for in User Guide?
Service Worker and Caching
Environment
N/A
Steps to Reproduce
The default ServiceWorker appears to cache files that it has not seen or downloaded. I have an api call which basically generates a zip to download, and is accessible via a http link. When a user navigates to this download URL by clicking on a link, the service worker intercepts the request, and tries to service the default index page.
With the ServiceWorker active, it appears that it is trying to retrieve this file from cache rather than requesting it from the server.
- (I think this is important) Have the homepage set to
"."
in the package.json config. - Have a link somewhere on your application that points to a file via an API call
- Click on the think with the service worker active
Expected Behavior
The browser would download the file (as it does without the service worker active)
Actual Behavior
The service worker intercepts the download and serves the normal index.html
file.
Suggested Behaviour
Have the whitelist exposed as a configuration so that a set of paths don't invoke the service worker.