workbox-webpack-plugin
Summary
- Types
- Properties
Types
GenerateSW
This class supports creating a new, ready-to-use service worker file as part of the webpack compilation process.
Use an instance of GenerateSW
in the plugins
array of a webpack config.
// The following lists some common options; see the rest of the documentation
// for the full set of options and defaults.
new GenerateSW({
exclude: [/.../, '...'],
maximumFileSizeToCacheInBytes: ...,
navigateFallback: '...',
runtimeCaching: [{
// Routing via a matchCallback function:
urlPattern: ({request, url}) => ...,
handler: '...',
options: {
cacheName: '...',
expiration: {
maxEntries: ...,
},
},
}, {
// Routing via a RegExp:
urlPattern: new RegExp('...'),
handler: '...',
options: {
cacheName: '...',
plugins: [..., ...],
},
}],
skipWaiting: ...,
});
Properties
- constructor
function
Creates an instance of GenerateSW.
The
constructor
function looks like:(config?: GenerateSWConfig) => {...}
- config
GenerateSWConfig optional
- returns
- config
GenerateSWConfig
Properties
- additionalManifestEntries
(string | ManifestEntry)[] optional
A list of entries to be precached, in addition to any entries that are generated as part of the build configuration.
- babelPresetEnvTargets
string[] optional
Default value is: ["chrome >= 56"]
The targets to pass to
babel-preset-env
when transpiling the service worker bundle. - cacheId
string optional
An optional ID to be prepended to cache names. This is primarily useful for local development where multiple sites may be served from the same
http://localhost:port
origin. - chunks
string[] optional
One or more chunk names whose corresponding output files should be included in the precache manifest.
- cleanupOutdatedCaches
boolean optional
Default value is: false
Whether or not Workbox should attempt to identify and delete any precaches created by older, incompatible versions.
- clientsClaim
boolean optional
Default value is: false
Whether or not the service worker should start controlling any existing clients as soon as it activates.
- directoryIndex
string optional
If a navigation request for a URL ending in
/
fails to match a precached URL, this value will be appended to the URL and that will be checked for a precache match. This should be set to what your web server is using for its directory index. - disableDevLogs
boolean optional
Default value is: false
- dontCacheBustURLsMatching
RegExp optional
Assets that match this will be assumed to be uniquely versioned via their URL, and exempted from the normal HTTP cache-busting that's done when populating the precache. While not required, it's recommended that if your existing build process already inserts a
[hash]
value into each filename, you provide a RegExp that will detect that, as it will reduce the bandwidth consumed when precaching. - exclude
(string | RegExp | function)[] optional
One or more specifiers used to exclude assets from the precache manifest. This is interpreted following the same rules as
webpack
's standardexclude
option. If not provided, the default value is[/\.map$/, /^manifest.*\.js$]
. - excludeChunks
string[] optional
One or more chunk names whose corresponding output files should be excluded from the precache manifest.
- ignoreURLParametersMatching
RegExp[] optional
Any search parameter names that match against one of the RegExp in this array will be removed before looking for a precache match. This is useful if your users might request URLs that contain, for example, URL parameters used to track the source of the traffic. If not provided, the default value is
[/^utm_/, /^fbclid$/]
. - importScripts
string[] optional
A list of JavaScript files that should be passed to
importScripts()
inside the generated service worker file. This is useful when you want to let Workbox create your top-level service worker file, but want to include some additional code, such as a push event listener. - importScriptsViaChunks
string[] optional
One or more names of webpack chunks. The content of those chunks will be included in the generated service worker, via a call to
importScripts()
. - include
(string | RegExp | function)[] optional
One or more specifiers used to include assets in the precache manifest. This is interpreted following the same rules as
webpack
's standardinclude
option. - inlineWorkboxRuntime
boolean optional
Default value is: false
Whether the runtime code for the Workbox library should be included in the top-level service worker, or split into a separate file that needs to be deployed alongside the service worker. Keeping the runtime separate means that users will not have to re-download the Workbox code each time your top-level service worker changes.
- manifestEntries
ManifestEntry[] optional
- manifestTransforms
ManifestTransform[] optional
One or more functions which will be applied sequentially against the generated manifest. If
modifyURLPrefix
ordontCacheBustURLsMatching
are also specified, their corresponding transformations will be applied first. - maximumFileSizeToCacheInBytes
number optional
Default value is: 2097152
This value can be used to determine the maximum size of files that will be precached. This prevents you from inadvertently precaching very large files that might have accidentally matched one of your patterns.
- mode
string optional
If set to 'production', then an optimized service worker bundle that excludes debugging info will be produced. If not explicitly configured here, the
mode
value configured in the currentwebpack
compilation will be used. - modifyURLPrefix
object optional
An object mapping string prefixes to replacement string values. This can be used to, e.g., remove or add a path prefix from a manifest entry if your web hosting setup doesn't match your local filesystem setup. As an alternative with more flexibility, you can use the
manifestTransforms
option and provide a function that modifies the entries in the manifest using whatever logic you provide.Example usage:
// Replace a '/dist/' prefix with '/', and also prepend // '/static' to every URL. modifyURLPrefix: { '/dist/': '/', '': '/static', }
string optional
Default value is: null
If specified, all navigation requests for URLs that aren't precached will be fulfilled with the HTML at the URL provided. You must pass in the URL of an HTML document that is listed in your precache manifest. This is meant to be used in a Single Page App scenario, in which you want all navigations to use common App Shell HTML.
RegExp[] optional
An optional array of regular expressions that restricts which URLs the configured
navigateFallback
behavior applies to. This is useful if only a subset of your site's URLs should be treated as being part of a Single Page App. If bothnavigateFallbackDenylist
andnavigateFallbackAllowlist
are configured, the denylist takes precedent.Note: These RegExps may be evaluated against every destination URL during a navigation. Avoid using complex RegExps, or else your users may see delays when navigating your site.
RegExp[] optional
An optional array of regular expressions that restricts which URLs the configured
navigateFallback
behavior applies to. This is useful if only a subset of your site's URLs should be treated as being part of a Single Page App. If bothnavigateFallbackDenylist
andnavigateFallbackAllowlist
are configured, the denylist takes precedence.Note: These RegExps may be evaluated against every destination URL during a navigation. Avoid using complex RegExps, or else your users may see delays when navigating your site.
boolean optional
Default value is: false
Whether or not to enable navigation preload in the generated service worker. When set to true, you must also use
runtimeCaching
to set up an appropriate response strategy that will match navigation requests, and make use of the preloaded response.- offlineGoogleAnalytics
boolean | GoogleAnalyticsInitializeOptions optional
Default value is: false
Controls whether or not to include support for offline Google Analytics. When
true
, the call toworkbox-google-analytics
'sinitialize()
will be added to your generated service worker. When set to anObject
, that object will be passed in to theinitialize()
call, allowing you to customize the behavior. - runtimeCaching
RuntimeCaching[] optional
When using Workbox's build tools to generate your service worker, you can specify one or more runtime caching configurations. These are then translated to
workbox-routing.registerRoute
calls using the match and handler configuration you define.For all of the options, see the
workbox-build.RuntimeCaching
documentation. The example below shows a typical configuration, with two runtime routes defined: - skipWaiting
boolean optional
Default value is: false
Whether to add an unconditional call to
skipWaiting()
to the generated service worker. Iffalse
, then amessage
listener will be added instead, allowing client pages to triggerskipWaiting()
by callingpostMessage({type: 'SKIP_WAITING'})
on a waiting service worker. - sourcemap
boolean optional
Default value is: true
Whether to create a sourcemap for the generated service worker files.
- swDest
string optional
Default value is: "service-worker.js"
The asset name of the service worker file created by this plugin.
InjectManifest
This class supports compiling a service worker file provided via swSrc
, and injecting into that service worker a list of URLs and revision information for precaching based on the webpack asset pipeline.
Use an instance of InjectManifest
in the plugins
array of a webpack config.
In addition to injecting the manifest, this plugin will perform a compilation of the swSrc
file, using the options from the main webpack configuration.
// The following lists some common options; see the rest of the documentation
// for the full set of options and defaults.
new InjectManifest({
exclude: [/.../, '...'],
maximumFileSizeToCacheInBytes: ...,
swSrc: '...',
});
Properties
- constructor
function
Creates an instance of InjectManifest.
The
constructor
function looks like:(config: WebpackInjectManifestOptions) => {...}
- returns
Properties
default
Type
object
Properties
- GenerateSW
query
- InjectManifest
query