summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Greiling <mike@pixelcog.com>2018-03-01 11:34:13 -0600
committerMike Greiling <mike@pixelcog.com>2018-03-01 11:34:13 -0600
commit41bba60490afd007ff859e39979a4080170e712f (patch)
treed1203b475872263ce136062e13f04174300febc2
parentce4dd19e09612dc9347b055190f86d805cdc8ef3 (diff)
downloadgitlab-ce-41bba60490afd007ff859e39979a4080170e712f.tar.gz
remove common_vue CommonsChunk config
-rw-r--r--config/webpack.config.js14
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'],