Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save osvaldasvalutis/01a7a441f29b533c4aca771e1017e95b to your computer and use it in GitHub Desktop.
Save osvaldasvalutis/01a7a441f29b533c4aca771e1017e95b to your computer and use it in GitHub Desktop.
const appLangs = ['en', 'sv'],
url = new URL(event.request.url);
event.respondWith(
fetch(event.request).then(response => {
// ...
return response;
})
.catch(function() {
let lang = url.pathname.substr(1, 2);
lang = appLangs.includes(lang) ? lang : appLangs[0];
return caches.match(`/${lang}/offline/`);
})
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment