diff options
author | Mike Greiling <mike@pixelcog.com> | 2017-03-27 16:11:02 -0500 |
---|---|---|
committer | Mike Greiling <mike@pixelcog.com> | 2017-03-27 16:11:02 -0500 |
commit | d0c9543b7ed2d63ec1d8d093facedc933318af77 (patch) | |
tree | 11a5525223cfa26f7144c4226eaf3c4940a11fbb /config/webpack.config.js | |
parent | 7c2dd5d4f0f138552cf9dd2b7f71eed09776810a (diff) | |
download | gitlab-ce-d0c9543b7ed2d63ec1d8d093facedc933318af77.tar.gz |
spread out webpack bundles per-line to reduce conflicts in EE
Diffstat (limited to 'config/webpack.config.js')
-rw-r--r-- | config/webpack.config.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/config/webpack.config.js b/config/webpack.config.js index 0859c8416c8..30e9e9c09b4 100644 --- a/config/webpack.config.js +++ b/config/webpack.config.js @@ -115,7 +115,11 @@ var config = { // create cacheable common library bundle for all d3 chunks new webpack.optimize.CommonsChunkPlugin({ name: 'common_d3', - chunks: ['graphs', 'users', 'monitoring'], + chunks: [ + 'graphs', + 'users', + 'monitoring', + ], }), // create cacheable common library bundles |