/
githubmirror
/
docusaurus
Обзор
Документация
Войти
/
githubmirror
/
docusaurus
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
website/src/sw.js
26 строк
732 B
Joshua Chen
chore: upgrade TypeScript & other ESLint related deps (#5963)
18 ноя 2021, 16:15
Не верифицирован
18 ноя 2021, 16:15
0374426
Код
Авторство
О чём код?
/** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ 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(), ); }