1.0.1 • Published 7 years ago
webpack-remove-assets-plugin v1.0.1
webpack-remove-assets-plugin
Removes assets matching a regular expression before they are emitted.
Install
npm i -D webpack-remove-assets-pluginUsage
// webpack.config.js
var RemoveAssetsPlugin = require('webpack-remove-assets-plugin');
module.exports = {
// ... snip ...
plugins: [
new RemoveAssetsPlugin({regex: /.*_nls-.*\.map$/});
],
// ... snip ...
}Options
regex
The regular expression to match against the assets to remove.