Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 

11 lignes
373 B

  1. self.addEventListener('install', async event => {
  2. console.log('Installing service worker...');
  3. self.skipWaiting();
  4. });
  5. self.addEventListener('fetch', event => {
  6. // You can add custom logic here for controlling whether to use cached data if offline, etc.
  7. // The following line opts out, so requests go directly to the network as usual.
  8. return null;
  9. });