diff options
author | Sam Light <sam@lightscale.co.uk> | 2025-04-01 21:57:48 +0100 |
---|---|---|
committer | Sam Light <samlight1994@gmail.com> | 2025-04-01 21:57:48 +0100 |
commit | 1114dab0adad310e932c4440c42760c9d1371174 (patch) | |
tree | 1425bd8717a101a91172fc1a791a4616fafb529a /index.js | |
parent | 8a1f90127a01463105979ce999011b30d8e7c875 (diff) |
Added remove empty scripts plugin
Diffstat (limited to 'index.js')
-rw-r--r-- | index.js | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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' |