craco-workbox icon indicating copy to clipboard operation
craco-workbox copied to clipboard

allow to define options in the plugin options

Open FezVrasta opened this issue 2 years ago • 0 comments

 {
      plugin: CracoWorkboxPlugin,
      options: {
         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;
	     }
      },
    },
}

FezVrasta avatar Oct 13 '21 14:10 FezVrasta