|
@@ -69,7 +69,7 @@ if (!self.define) {
|
|
|
};
|
|
|
}
|
|
|
define(['./workbox-5357ef54'], function (workbox) {
|
|
|
- 'use strict';
|
|
|
+ ('use strict');
|
|
|
|
|
|
self.skipWaiting();
|
|
|
workbox.clientsClaim();
|
|
@@ -92,10 +92,19 @@ define(['./workbox-5357ef54'], function (workbox) {
|
|
|
],
|
|
|
{}
|
|
|
);
|
|
|
+ /**
|
|
|
+ * https://juejin.cn/post/6844903881189621767
|
|
|
+ * 缓存策略 有5种
|
|
|
+ */
|
|
|
workbox.cleanupOutdatedCaches();
|
|
|
workbox.registerRoute(
|
|
|
new workbox.NavigationRoute(workbox.createHandlerBoundToURL('index.html'), {
|
|
|
allowlist: [/^\/$/]
|
|
|
- })
|
|
|
+ }),
|
|
|
+ workbox.strategies.NetworkFirst()
|
|
|
+ );
|
|
|
+ workbox.routing.registerRoute(
|
|
|
+ new RegExp('.*.html|css|js'),
|
|
|
+ workbox.strategies.NetworkFirst()
|
|
|
);
|
|
|
});
|