0.6.6 • Published 1 year ago

webpack-remove-ip-plugin v0.6.6

Weekly downloads
-
License
MIT
Repository
-
Last release
1 year ago

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()
]