idiotikmethods 0.1.2 → 0.1.3

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/sw.js +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "idiotikmethods",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "main": "IdiotikMethods.js",
5
5
  "files": [
6
6
  "IdiotikMethods.js",
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: "force-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: "force-cache",
208
+ cache: "no-cache",
209
209
  credentials: "omit",
210
210
  });
211
211