From e190ff875acf97a6eaa513171ff78819fb4b4cb0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bar=C4=B1=C5=9F=20Soner=20U=C5=9Fakl=C4=B1?= Date: Tue, 22 Feb 2022 16:37:40 -0500 Subject: [PATCH] feat: add chunkFile name with contenthash --- webpack.common.js | 1 + 1 file changed, 1 insertion(+) diff --git a/webpack.common.js b/webpack.common.js index 34c5907f7c..b4b05701fb 100644 --- a/webpack.common.js +++ b/webpack.common.js @@ -28,6 +28,7 @@ module.exports = { }, output: { filename: '[name].min.js', + chunkFilename: '[name].[contenthash].js', path: path.resolve(__dirname, 'build/webpack'), publicPath: `${relativePath}/assets/`, },