Files
website-11ty-hamburg.stefan…/workbox.config.js
2021-12-30 17:41:03 +01:00

23 lines
478 B
JavaScript

module.exports = {
globDirectory: 'dist/',
globPatterns: ['**/*.woff2'],
swDest: 'dist/sw.js',
sourcemap: false,
cleanupOutdatedCaches: true,
clientsClaim: true,
skipWaiting: true,
runtimeCaching: [
{
urlPattern: /\.(?:jpg|png|svg|gif|webp|avif)$/,
handler: 'CacheFirst',
options: {
cacheName: 'images',
expiration: {
maxEntries: 50,
maxAgeSeconds: 60 * 60 * 24 * 365,
},
},
},
],
};