cacheableresponse plugin fixes img sw cache
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Martti Malmi 2024-01-10 22:15:58 +02:00
parent 326ce2ba68
commit cb233f4ccb
3 changed files with 9 additions and 2 deletions

View File

@ -44,6 +44,7 @@
"use-long-press": "^3.2.0",
"use-sync-external-store": "^1.2.0",
"uuid": "^9.0.0",
"workbox-cacheable-response": "^7.0.0",
"workbox-core": "^6.4.2",
"workbox-expiration": "^7.0.0",
"workbox-precaching": "^7.0.0",

View File

@ -1,4 +1,6 @@
/// <reference lib="webworker" />
import { CacheableResponsePlugin } from "workbox-cacheable-response";
declare const self: ServiceWorkerGlobalScope & {
__WB_MANIFEST: (string | PrecacheEntry)[];
};
@ -53,6 +55,9 @@ registerRoute(
ignoreVary: true,
},
}),
new CacheableResponsePlugin({
statuses: [0, 200],
}),
],
}),
);
@ -61,7 +66,7 @@ registerRoute(
({ url }) => url.origin === "https://api.snort.social" && url.pathname.startsWith("/api/v1/preview"),
new StaleWhileRevalidate({
cacheName: "preview-cache",
plugins: [new ExpirationPlugin({ maxAgeSeconds: 4 * 60 * 60 })],
plugins: [new ExpirationPlugin({ maxAgeSeconds: 24 * 60 * 60 })],
}),
);

View File

@ -3002,6 +3002,7 @@ __metadata:
vite-plugin-pwa: ^0.17.0
vite-plugin-version-mark: ^0.0.10
vitest: ^0.34.6
workbox-cacheable-response: ^7.0.0
workbox-core: ^6.4.2
workbox-expiration: ^7.0.0
workbox-precaching: ^7.0.0
@ -11959,7 +11960,7 @@ __metadata:
languageName: node
linkType: hard
"workbox-cacheable-response@npm:7.0.0":
"workbox-cacheable-response@npm:7.0.0, workbox-cacheable-response@npm:^7.0.0":
version: 7.0.0
resolution: "workbox-cacheable-response@npm:7.0.0"
dependencies: