Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorMike Greiling <mike@pixelcog.com>2018-03-01 20:34:13 +0300
committerMike Greiling <mike@pixelcog.com>2018-03-01 20:34:13 +0300
commit41bba60490afd007ff859e39979a4080170e712f (patch)
treed1203b475872263ce136062e13f04174300febc2 /config
parentce4dd19e09612dc9347b055190f86d805cdc8ef3 (diff)
remove common_vue CommonsChunk config
Diffstat (limited to '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'],