mirror of
				https://github.com/ChatGPTNextWeb/ChatGPT-Next-Web.git
				synced 2025-11-04 08:13:43 +08:00 
			
		
		
		
	Revert "fix serviceWorker cache: auto caching files by workbox"
This commit is contained in:
		@@ -1,21 +1,15 @@
 | 
			
		||||
const CHATGPT_NEXT_WEB_CACHE = "chatgpt-next-web-cache";
 | 
			
		||||
 | 
			
		||||
importScripts('https://storage.googleapis.com/workbox-cdn/releases/7.0.0/workbox-sw.js');
 | 
			
		||||
 | 
			
		||||
self.addEventListener("activate", function (event) {
 | 
			
		||||
  console.log("ServiceWorker activated.");
 | 
			
		||||
});
 | 
			
		||||
 | 
			
		||||
workbox.core.clientsClaim();
 | 
			
		||||
self.addEventListener("message", (event) => {
 | 
			
		||||
  if (event.data && event.data.type === "SKIP_WAITING") {
 | 
			
		||||
    self.skipWaiting();
 | 
			
		||||
  }
 | 
			
		||||
self.addEventListener("install", function (event) {
 | 
			
		||||
  event.waitUntil(
 | 
			
		||||
    caches.open(CHATGPT_NEXT_WEB_CACHE).then(function (cache) {
 | 
			
		||||
      return cache.addAll([]);
 | 
			
		||||
    }),
 | 
			
		||||
  );
 | 
			
		||||
});
 | 
			
		||||
 | 
			
		||||
workbox.routing.registerRoute(
 | 
			
		||||
  new RegExp('/*'),
 | 
			
		||||
  new workbox.strategies.StaleWhileRevalidate({
 | 
			
		||||
    cacheName: CHATGPT_NEXT_WEB_CACHE
 | 
			
		||||
  })
 | 
			
		||||
);
 | 
			
		||||
self.addEventListener("fetch", (e) => {});
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user