diff options
author | Mike Greiling <mike@pixelcog.com> | 2018-03-01 11:34:13 -0600 |
---|---|---|
committer | Mike Greiling <mike@pixelcog.com> | 2018-03-01 11:34:13 -0600 |
commit | 41bba60490afd007ff859e39979a4080170e712f (patch) | |
tree | d1203b475872263ce136062e13f04174300febc2 /config/webpack.config.js | |
parent | ce4dd19e09612dc9347b055190f86d805cdc8ef3 (diff) | |
download | gitlab-ce-41bba60490afd007ff859e39979a4080170e712f.tar.gz |
remove common_vue CommonsChunk config
Diffstat (limited to 'config/webpack.config.js')
-rw-r--r-- | config/webpack.config.js | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/config/webpack.config.js b/config/webpack.config.js index e10b0513f3a..cd7fec48c31 100644 --- a/config/webpack.config.js +++ b/config/webpack.config.js @@ -215,20 +215,6 @@ const config = { return `${moduleNames[0]}-${hash.substr(0, 6)}`; }), - // create cacheable common library bundle for all vue chunks - new webpack.optimize.CommonsChunkPlugin({ - name: 'common_vue', - chunks: [ - 'monitoring', - 'mr_notes', - 'registry_list', - 'ide', - ], - minChunks: function(module, count) { - return module.resource && (/vue_shared/).test(module.resource); - }, - }), - // create cacheable common library bundles new webpack.optimize.CommonsChunkPlugin({ names: ['main', 'common', 'webpack_runtime'], |