Skip to content

Instantly share code, notes, and snippets.

@samdbeckham
Created July 19, 2016 11:46
Show Gist options
  • Select an option

  • Save samdbeckham/24bb10c44c5bde99753889a809dfeb49 to your computer and use it in GitHub Desktop.

Select an option

Save samdbeckham/24bb10c44c5bde99753889a809dfeb49 to your computer and use it in GitHub Desktop.
/*global self: true */
'use strict';
self.addEventListener('fetch', event => {
const url = new URL(event.request.url);
if(url.pathname.endsWith('.png')
|| url.pathname.endsWith('.jpg')) {
event.respondWith(
fetch('./nickCage.jpg')
);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment