/
githubmirror
/
gpt-runner
Обзор
Документация
Войти
/
githubmirror
/
gpt-runner
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
website/src/sw.js
18 строк
532 B
JinmingYang
docs: move doc site dir to website dir
27 июн 2023, 18:22
27 июн 2023, 18:22
87887ca
Код
Авторство
О чём код?
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(), ) }