Skip to content

Instantly share code, notes, and snippets.

@abdelfattah-atef94
Created November 28, 2019 07:44
Show Gist options
  • Save abdelfattah-atef94/34f4d62d38888dd2fa44e9f661617a76 to your computer and use it in GitHub Desktop.
Save abdelfattah-atef94/34f4d62d38888dd2fa44e9f661617a76 to your computer and use it in GitHub Desktop.
importScripts('https://storage.googleapis.com/workbox-cdn/releases/3.0.0/workbox-sw.js');
// Custom Adjustments
// To cache api data using cache first startegy
workbox.routing.registerRoute(
new RegExp('https://jsonplaceholder.typicode.com/users'),
workbox.strategies.cacheFirst()
);
workbox.precaching.precacheAndRoute([]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment