diff options
author | Clement Ho <clemmakesapps@gmail.com> | 2018-03-01 16:57:55 +0000 |
---|---|---|
committer | Mike Greiling <mike@pixelcog.com> | 2018-03-01 16:57:55 +0000 |
commit | e951fa9da0fe2bc765fb4089b5678eaf4ca72d01 (patch) | |
tree | 67f75e7994d191468ec77ad183d59a00b5727c42 /config | |
parent | daa0c9293b69aadb62031cb5dea7360cf4a8379f (diff) | |
download | gitlab-ce-e951fa9da0fe2bc765fb4089b5678eaf4ca72d01.tar.gz |
Remove unnecessary chunks from common_vue
Diffstat (limited to 'config')
-rw-r--r-- | config/webpack.config.js | 11 |
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); |