summaryrefslogtreecommitdiff
path: root/index.js
diff options
context:
space:
mode:
authorSam Light <sam@lightscale.co.uk>2025-04-01 21:57:48 +0100
committerSam Light <samlight1994@gmail.com>2025-04-01 21:57:48 +0100
commit1114dab0adad310e932c4440c42760c9d1371174 (patch)
tree1425bd8717a101a91172fc1a791a4616fafb529a /index.js
parent8a1f90127a01463105979ce999011b30d8e7c875 (diff)
Added remove empty scripts plugin
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'