webpack-remove-ip-plugin
v0.6.6
Published
Remove ip strings in assets according to provided regex or string
Downloads
2
Maintainers
Readme
webpack-remove-ip-plugin
A plugin for remove ip string value in assets. It processes assets right before emitting so you can treat this plugin as a postprocessor.
Installation
bash
npm install --save-dev webpack-remove-ip-plugin
# or
yarn add --dev webpack-remove-ip-plugin
Usage
const RemoveIpPlugin = require('webpack-remove-ip-plugin');
...
// add to webpack plugins array
plugins: [
new RemoveIpPlugin()
]