UNPKG

846 BJavaScriptView Raw
1module.exports = {
2 // General
3 workboxVersion: '4.0.0-rc.2',
4 workboxURL: undefined,
5 importScripts: [],
6 autoRegister: true,
7 dev: false,
8
9 // Config
10 config: {},
11 clientsClaim: true,
12 skipWaiting: true,
13 offlineAnalytics: false,
14 workboxExtensions: [],
15
16 // Precache
17 preCaching: [],
18 cacheOptions: {
19 cacheId: process.env.npm_package_name || 'nuxt',
20 directoryIndex: '/',
21 revision: undefined
22 },
23 cachingExtensions: [],
24 cleanupOutdatedCaches: true,
25
26 // Offline
27 offline: true,
28 offlinePage: null,
29 offlineAssets: [],
30
31 // Runtime Caching
32 runtimeCaching: [],
33 routingExtensions: [],
34 cacheAssets: true,
35 assetsURLPattern: undefined,
36 pagesURLPattern: undefined,
37
38 // Sw
39 swTemplate: undefined,
40 swUrl: undefined,
41 swScope: undefined,
42
43 // Router
44 routerBase: undefined,
45 publicPath: undefined
46}