Skip to content

Instantly share code, notes, and snippets.

@thangman22
Created March 24, 2018 05:55
Show Gist options
  • Select an option

  • Save thangman22/0fcd268d2409710cea28c653521f5d03 to your computer and use it in GitHub Desktop.

Select an option

Save thangman22/0fcd268d2409710cea28c653521f5d03 to your computer and use it in GitHub Desktop.
workbox.routing.registerRoute(
new RegExp('^((?!wp-admin|wp-login).)*$'),
workbox.strategies.staleWhileRevalidate({
cacheName: 'page-cache',
plugins: [
new workbox.expiration.Plugin({
maxEntries: 10,
maxAgeSeconds: 7 * 24 * 60 * 60
})
]
})
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment