From 1114dab0adad310e932c4440c42760c9d1371174 Mon Sep 17 00:00:00 2001 From: Sam Light Date: Tue, 1 Apr 2025 21:57:48 +0100 Subject: Added remove empty scripts plugin --- index.js | 2 ++ 1 file changed, 2 insertions(+) (limited to 'index.js') 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' -- cgit v1.2.3