self.addEventListener('install', (e) => {
    console.log(1212333)
    e.waitUntil(
      caches.open('fox-store').then((cache) => cache.addAll([
        '/active2022/footseenH5/',
        '/active2022/footseenH5/index.html',
        '/active2022/footseenH5/index.js',
        '/active2022/footseenH5/css/index.css',
        '/active2022/footseenH5/images/',
      ])),
    );
  });
  console.log(1212)
  self.addEventListener('fetch', (e) => {
    console.log(e.request.url);
    e.respondWith(
      caches.match(e.request).then((response) => response || fetch(e.request)),
    );
  });