@randy-ang/webpack-retry-chunk-load-plugin
v1.4.1
Published
A webpack plugin to retry loading of chunks that failed to load
Downloads
2
Readme
webpack-retry-chunk-load-plugin
A webpack plugin to retry loading of async chunks that failed to load
Installing
yarn add @randy-ang/webpack-retry-chunk-load-plugin
Usage
// webpack.config.js
const { RetryChunkLoadPlugin } = require('webpack-retry-chunk-load-plugin');
plugins: [
new RetryChunkLoadPlugin({
// optional stringified function to get the cache busting query string appended to the script src
// if not set will default to appending the string `?retry-attempt=<retries-done>`
cacheBust: `function() {
return Date.now();
}`,
// optional value to set the maximum number of retries to load the chunk. Default is 1
maxRetries: 5,
// optional list of chunks to which retry script should be injected
// if not set will add retry script to all chunks that have webpack script loading
chunks: ['chunkName'],
// optional code to be executed in the browser context if after all retries chunk is not loaded.
// if not set - nothing will happen and error will be returned to the chunk loader.
lastResortScript: "window.location.href='/500.html';",
// timeout (in milliseconds) before retrying to load chunk, defaults to 0
delay: 1000
})
];
angular cli
To use this with the angular CLI you can use the fantastic angular-builders
project to extend the built in webpack config
License
MIT