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 Jan 23, 2021. It is now read-only.
Even when I set: dontCacheBustUrlsMatching: /./ sw-precache still generate the precacheConfig as follow
[["css/main3cb4f06fd9e705bea97eb1bece31fd6d.css","3cb4f06fd9e705bea97eb1bece31fd6d"]].
Do I need to do something else to do not generate cache-busting parameter ?
The text was updated successfully, but these errors were encountered:
What you're seeing is expected. sw-precache still needs to know how to version the URL.
What you should not be seeing is an _sw-prechace=<hash> parameter appended to the end of the URL when the cache is being populated. You're telling sw-precache that you don't want that parameter added because you're fine if the HTTP cache is used to fulfill the precaching request.
Here's an example of what you should not be seeing:
Instead, you should see requests with the gear icon next to them that don't end in _sw-prechace=<hash>.
Even when I set:
dontCacheBustUrlsMatching: /./
sw-precache still generate the precacheConfig as follow[["css/main3cb4f06fd9e705bea97eb1bece31fd6d.css","3cb4f06fd9e705bea97eb1bece31fd6d"]].
Do I need to do something else to do not generate cache-busting parameter ?
The text was updated successfully, but these errors were encountered: