1 Star 3 Fork 1

RiverMountain/docusaurus-theme-zen

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
sw.js 538 Bytes
一键复制 编辑 原始数据 按行查看 历史
import { registerRoute } from 'workbox-routing'
import { StaleWhileRevalidate } from 'workbox-strategies'
export default function swCustom(params) {
if (params.debug) {
console.log('[Docusaurus-PWA][SW]: running swCustom code', params)
}
// Cache responses from external resources
registerRoute(
context =>
[
/graph\.facebook\.com\/.*\/picture/,
/netlify\.com\/img/,
/avatars1\.githubusercontent/,
].some(regex => context.url.href.match(regex)),
new StaleWhileRevalidate(),
)
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
TypeScript
1
https://gitee.com/wrm244/docusaurus-theme-zen.git
git@gitee.com:wrm244/docusaurus-theme-zen.git
wrm244
docusaurus-theme-zen
docusaurus-theme-zen
main

搜索帮助