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
diff options
context:
space:
mode:
authorMike Greiling <mike@pixelcog.com>2018-03-01 19:57:55 +0300
committerMike Greiling <mike@pixelcog.com>2018-03-01 19:57:55 +0300
commit1beea04f02753e5dd0fbb8327a30590037471d83 (patch)
tree67f75e7994d191468ec77ad183d59a00b5727c42
parentdaa0c9293b69aadb62031cb5dea7360cf4a8379f (diff)
parente951fa9da0fe2bc765fb4089b5678eaf4ca72d01 (diff)
Merge branch 'remove-vue-mr-webpack' into 'master'
Remove unnecessary chunks from common_vue See merge request gitlab-org/gitlab-ce!17460
-rw-r--r--config/webpack.config.js11
1 files changed, 0 insertions, 11 deletions
diff --git a/config/webpack.config.js b/config/webpack.config.js
index e806083bf16..4611544226d 100644
--- a/config/webpack.config.js
+++ b/config/webpack.config.js
@@ -224,23 +224,12 @@ const config = {
new webpack.optimize.CommonsChunkPlugin({
name: 'common_vue',
chunks: [
- 'boards',
- 'deploy_keys',
- 'environments',
- 'filtered_search',
- 'groups',
'monitoring',
'mr_notes',
'notebook_viewer',
'pdf_viewer',
- 'pipelines',
- 'pipelines_details',
'registry_list',
'ide',
- 'schedule_form',
- 'schedules_index',
- 'sidebar',
- 'vue_merge_request_widget',
],
minChunks: function(module, count) {
return module.resource && (/vue_shared/).test(module.resource);