react-app-rewire-unplug
v0.9.0
Published
Removes unwanted plugins from the react-create-app webpack file using react-app-rewired-config.
Downloads
2,426
Maintainers
Readme
react-app-rewire-unplug
A plugin for react-app-rewired. It removes unwanted webpack plugins from the default react-create-app configuration.
Installation
$ npm install react-app-rewire-unplug --only=devUsage
Add the following to your config-overrides.js file. See react-app-rewired for more information regarding this file.
const removeWebpackPlugins = require ('react-app-rewire-unplug');The following code removes two webpack plugins from the config. You would put this in the config's override function.
config = removeWebpackPlugins(config, env, {
pluginNames: ['SWPrecacheWebpackPlugin', 'NonExistentPlugin'],
verbose: true
});What happens here:
- The default SW in your CRA,
SWPrecacheWebpackPluginwill be removed. Now you could create your own Service Worker. - Because there's no
NonExistentPluginpresent in the default CRA config, no other plugins would be removed. - The
verboseoption reports this in a single line to the console.
Options
Configure the third parameter of removeWebpackPlugins as an object with the following optional properties:
pluginNames(string[]) : a string Array containing any plugins to look for and remove.verbose(boolean) : report any removed plugins in the console.
