diff options
author | Mike Greiling <mike@pixelcog.com> | 2017-05-10 16:26:50 -0500 |
---|---|---|
committer | Mike Greiling <mike@pixelcog.com> | 2017-05-12 08:56:22 -0500 |
commit | 5655ff0feeaa76524dafbac982ec96cbf18e9e20 (patch) | |
tree | abd242d48806b3d93482eca68b8ef2a251100931 /config | |
parent | 99f36c2ca69de17235eeab53f510753b6c1ae7c4 (diff) | |
download | gitlab-ce-5655ff0feeaa76524dafbac982ec96cbf18e9e20.tar.gz |
ensure schedule_form and schedules_index both utilize common_vue bundleuse-common-vue-for-pipeline-schedule-bundles
Diffstat (limited to 'config')
-rw-r--r-- | config/webpack.config.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/config/webpack.config.js b/config/webpack.config.js index 32064138ae4..ed71ee09963 100644 --- a/config/webpack.config.js +++ b/config/webpack.config.js @@ -142,13 +142,15 @@ var config = { 'environments', 'environments_folder', 'filtered_search', - 'sidebar', 'issue_show', 'merge_conflicts', 'notebook_viewer', 'pdf_viewer', 'pipelines', 'pipelines_graph', + 'schedule_form', + 'schedules_index', + 'sidebar', ], minChunks: function(module, count) { return module.resource && (/vue_shared/).test(module.resource); |