選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 

11 行
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. });