Skip to content

Instantly share code, notes, and snippets.

@MrPeker
Created January 27, 2019 18:03
Embed
What would you like to do?
Cache Javascript and CSS Workbox
// Stale While Revalidate stratejisiyle CSS ve JS varlıklarınızı önbellekleyin
workbox.routing.registerRoute(
/\.(?:js|css)$/,
workbox.strategies.staleWhileRevalidate(),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment