From e951fa9da0fe2bc765fb4089b5678eaf4ca72d01 Mon Sep 17 00:00:00 2001 From: Clement Ho Date: Thu, 1 Mar 2018 16:57:55 +0000 Subject: [PATCH] Remove unnecessary chunks from common_vue --- config/webpack.config.js | 11 ----------- 1 file changed, 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);