From 945690d30401638c1c73a019485410e5ee940454 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Brunner?= Date: Tue, 9 Jul 2019 16:06:59 +0200 Subject: [PATCH] Removes the vendor hash --- buildtools/webpack.config.dll.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/buildtools/webpack.config.dll.js b/buildtools/webpack.config.dll.js index adf65c7a9443..1de15b0d039b 100644 --- a/buildtools/webpack.config.dll.js +++ b/buildtools/webpack.config.dll.js @@ -9,7 +9,7 @@ module.exports = { output: { path: path.resolve(__dirname, '../dist/'), filename: '[name].js', - library: '[name]_[hash]', + library: '[name]', }, module: { rules: [ @@ -38,7 +38,7 @@ module.exports = { plugins: [ new webpack.DllPlugin({ path: path.resolve(__dirname, '../dist/vendor-manifest.json'), - name: '[name]_[hash]', + name: '[name]', }), new webpack.SourceMapDevToolPlugin({ filename: '[file].map',