3 Star 49 Fork 35

刘明野/quarkHomePage

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
sw.js 602 Bytes
一键复制 编辑 原始数据 按行查看 历史
刘明野 提交于 2020-12-03 19:00 . 更换代理服务
importScripts('https://g.alicdn.com/kg/workbox/4.3.1/workbox-sw.js');
// 缓存静态资源
workbox.routing.registerRoute(/([\/|.|\w|\s|-])*\.(?:png|gif|jpg|jpeg|webp|svg|ico|ttf|woff|woff2|eot|otf|js|css)/, new workbox.strategies.CacheFirst({
cacheName: 'static-resources',
plugins: [new workbox.expiration.Plugin({
maxEntries: 500, // 最大保存项目
maxAgeSeconds: 1 * 24 * 60 * 60, // 缓存 1 天
purgeOnQuotaError: true
})]
}));
// 缓存主页
workbox.precaching.precacheAndRoute([{
"revision": "16069",
"url": "index.html"
}], {});
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
HTML/CSS
1
https://gitee.com/liumingye/quarkHomePage.git
git@gitee.com:liumingye/quarkHomePage.git
liumingye
quarkHomePage
quarkHomePage
master

搜索帮助