Prerequisites
Install craco
yarn add craco-workbox -D
# OR
npm install craco-workbox -S
- Add the plugin into your craco.config.js;
// craco.config.js
const CracoWorkboxPlugin = require('craco-workbox');
module.exports = {
plugins: [{
plugin: CracoWorkboxPlugin
}]
}
- Add a workbox.config.js file to your project root containing the overrides you would like to pass. For a full list of options see https://developers.google.com/web/tools/workbox/modules/workbox-webpack-plugin#generatesw_plugin.
// workbox.config.js
module.exports = {
GenerateSW: options => {
// override GenerateSW config here
// e.g. options.skipWaiting = true;
return options;
},
InjectManifest: options => {
// override InjectManifest config here
// e.g. options.maximumFileSizeToCacheInBytes = 10 * 1024 * 1024;
return options;
}
};
Licensed under the MIT License, Copyright ©️ 2019 Kevin S. Perrine. See LICENSE for more information.