Skip to content

Instantly share code, notes, and snippets.

@MrPeker
Created January 27, 2019 19:27
Show Gist options
  • Save MrPeker/c5c513d11ec4abe76a4e1c8a3f5c14e0 to your computer and use it in GitHub Desktop.
Save MrPeker/c5c513d11ec4abe76a4e1c8a3f5c14e0 to your computer and use it in GitHub Desktop.
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