idiotikmethods 0.1.2 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/sw.js +2 -2
package/package.json
CHANGED
package/sw.js
CHANGED
|
@@ -163,7 +163,7 @@ async function _interceptCdnRequest(request, url) {
|
|
|
163
163
|
// ── PRIMARY: response rewrite ────────────────────────────────
|
|
164
164
|
try {
|
|
165
165
|
const realResponse = await fetch(request.url, {
|
|
166
|
-
cache: "
|
|
166
|
+
cache: "no-cache",
|
|
167
167
|
credentials: "omit",
|
|
168
168
|
});
|
|
169
169
|
|
|
@@ -205,7 +205,7 @@ async function _interceptCdnRequest(request, url) {
|
|
|
205
205
|
|
|
206
206
|
async function _blobFallbackStrategy(request, url, libKey) {
|
|
207
207
|
const realResponse = await fetch(request.url, {
|
|
208
|
-
cache: "
|
|
208
|
+
cache: "no-cache",
|
|
209
209
|
credentials: "omit",
|
|
210
210
|
});
|
|
211
211
|
|