summaryrefslogtreecommitdiff
path: root/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'index.js')
-rw-r--r--index.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/index.js b/index.js
index f80489c..c825b20 100644
--- a/index.js
+++ b/index.js
@@ -1,5 +1,6 @@
import * as path from 'path';
import MiniCssExtractPlugin from 'mini-css-extract-plugin';
+import RemoveEmptyScriptsPlugin from 'webpack-remove-empty-scripts';
import NotifierPlugin from 'webpack-notifier';
import ManifestPlugin from 'webpack-assets-manifest';
import StylelintPlugin from 'stylelint-webpack-plugin';
@@ -114,6 +115,7 @@ export const makeConfig = (env, argv, options) => {
new CleanWebpackPlugin({
cleanStaleWebpackAssets: !isWatch
}),
+ new RemoveEmptyScriptsPlugin(),
new MiniCssExtractPlugin({
filename: 'css/[name].[contenthash:8].css',
chunkFilename: '[id].[contenthash:8].css'