A plugin for webpack to remove the source that are not needed. Can be used with html-webpack-inline-source-plugin to remove inlined source.
You can install it via yarn or npm.
$ yarn add remove-source-webpack-plugin --dev
$ npm install remove-source-webpack-plugin --save-dev
Require the plugin in your webpack config:
const RemoveSourceWebpackPlugin = require('remove-source-webpack-plugin');
Add the plugin to your webpack config as follows:
plugins: [
new RemoveSourceWebpackPlugin(/runtime.*\.js$/) // array is also accepted
]