index.js 662 B

123456789101112131415161718
  1. /*
  2. Copyright 2020 Google LLC
  3. Use of this source code is governed by an MIT-style
  4. license that can be found in the LICENSE file or at
  5. https://opensource.org/licenses/MIT.
  6. */
  7. import { googleFontsCache } from './googleFontsCache';
  8. import { imageCache } from './imageCache';
  9. import { staticResourceCache, } from './staticResourceCache';
  10. import { pageCache } from './pageCache';
  11. import { offlineFallback } from './offlineFallback';
  12. import { warmStrategyCache } from './warmStrategyCache';
  13. import './_version.js';
  14. /**
  15. * @module workbox-recipes
  16. */
  17. export { googleFontsCache, imageCache, offlineFallback, pageCache, staticResourceCache, warmStrategyCache, };