23 lines
723 B
JavaScript
23 lines
723 B
JavaScript
/* eslint-disable no-undef */
|
|
/* global workbox */
|
|
|
|
// Cache the Google Fonts stylesheets with a stale-while-revalidate strategy.
|
|
workbox.routing.registerRoute(
|
|
/^https:\/\/fonts\.googleapis\.com/u,
|
|
new workbox.strategies.StaleWhileRevalidate({ cacheName: "google-fonts-stylesheets" })
|
|
)
|
|
|
|
// Cache the underlying font files with a cache-first strategy for 1 year.
|
|
workbox.routing.registerRoute(
|
|
/^https:\/\/fonts\.gstatic\.com/u,
|
|
new workbox.strategies.CacheFirst({
|
|
cacheName: "google-fonts-webfonts",
|
|
plugins: [
|
|
new workbox.cacheableResponse.Plugin({ statuses: [0, 200] }),
|
|
new workbox.expiration.Plugin({
|
|
maxAgeSeconds: 60 * 60 * 24 * 365,
|
|
maxEntries: 30
|
|
})
|
|
]
|
|
})
|
|
)
|