Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
workbox.routing.registerRoute(
match,
workbox.strategies.staleWhileRevalidate()
);
workbox.routing.registerRoute(
match,
workbox.strategies.networkFirst()
);
workbox.routing.registerRoute(
match,
workbox.strategies.cacheFirst()
);
workbox.routing.registerRoute(
match,
workbox.strategies.networkOnly()
);
workbox.routing.registerRoute(
match,
workbox.strategies.cacheOnly()
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment