sw-precache-config.js 287 B

1234567891011121314151617
  1. module.exports = {
  2. staticFileGlobs: [
  3. 'manifest.json',
  4. 'images/*',
  5. 'src/**/*',
  6. ],
  7. runtimeCaching: [
  8. {
  9. urlPattern: /\/@webcomponents\/webcomponentsjs\//,
  10. handler: 'fastest'
  11. },
  12. {
  13. urlPattern: /\/data\//,
  14. handler: 'fastest'
  15. }
  16. ]
  17. };