|
Last change
on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago |
|
Fix frontend appearance
|
-
Property mode
set to
100644
|
|
File size:
1.5 KB
|
| Line | |
|---|
| 1 | /*
|
|---|
| 2 | Copyright 2018 Google LLC
|
|---|
| 3 |
|
|---|
| 4 | Use of this source code is governed by an MIT-style
|
|---|
| 5 | license that can be found in the LICENSE file or at
|
|---|
| 6 | https://opensource.org/licenses/MIT.
|
|---|
| 7 | */
|
|---|
| 8 |
|
|---|
| 9 | import {addPlugins} from './addPlugins.js';
|
|---|
| 10 | import {addRoute} from './addRoute.js';
|
|---|
| 11 | import {cleanupOutdatedCaches} from './cleanupOutdatedCaches.js';
|
|---|
| 12 | import {createHandlerBoundToURL} from './createHandlerBoundToURL.js';
|
|---|
| 13 | import {getCacheKeyForURL} from './getCacheKeyForURL.js';
|
|---|
| 14 | import {matchPrecache} from './matchPrecache.js';
|
|---|
| 15 | import {precache} from './precache.js';
|
|---|
| 16 | import {precacheAndRoute} from './precacheAndRoute.js';
|
|---|
| 17 | import {PrecacheController} from './PrecacheController.js';
|
|---|
| 18 | import {PrecacheRoute} from './PrecacheRoute.js';
|
|---|
| 19 | import {PrecacheStrategy} from './PrecacheStrategy.js';
|
|---|
| 20 | import {PrecacheFallbackPlugin} from './PrecacheFallbackPlugin.js';
|
|---|
| 21 |
|
|---|
| 22 | import './_version.js';
|
|---|
| 23 |
|
|---|
| 24 | /**
|
|---|
| 25 | * Most consumers of this module will want to use the
|
|---|
| 26 | * {@link workbox-precaching.precacheAndRoute}
|
|---|
| 27 | * method to add assets to the cache and respond to network requests with these
|
|---|
| 28 | * cached assets.
|
|---|
| 29 | *
|
|---|
| 30 | * If you require more control over caching and routing, you can use the
|
|---|
| 31 | * {@link workbox-precaching.PrecacheController}
|
|---|
| 32 | * interface.
|
|---|
| 33 | *
|
|---|
| 34 | * @module workbox-precaching
|
|---|
| 35 | */
|
|---|
| 36 |
|
|---|
| 37 | export {
|
|---|
| 38 | addPlugins,
|
|---|
| 39 | addRoute,
|
|---|
| 40 | cleanupOutdatedCaches,
|
|---|
| 41 | createHandlerBoundToURL,
|
|---|
| 42 | getCacheKeyForURL,
|
|---|
| 43 | matchPrecache,
|
|---|
| 44 | precache,
|
|---|
| 45 | precacheAndRoute,
|
|---|
| 46 | PrecacheController,
|
|---|
| 47 | PrecacheRoute,
|
|---|
| 48 | PrecacheStrategy,
|
|---|
| 49 | PrecacheFallbackPlugin,
|
|---|
| 50 | };
|
|---|
| 51 |
|
|---|
| 52 | export * from './_types.js';
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.