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
path: root/config
diff options
context:
space:
mode:
authorMike Greiling <mike@pixelcog.com>2018-02-17 01:49:13 +0300
committerMike Greiling <mike@pixelcog.com>2018-02-20 01:56:23 +0300
commit15a4773e06d91d57a80699818a7754e92e276b39 (patch)
tree596c5e4de8c153a418bbf76ba1205ed0bdd92f5f /config
parentfb38bc3faeee0d691f8f473cf5b32d356eabb43f (diff)
remove common_d3 bundle
Diffstat (limited to 'config')
-rw-r--r--config/webpack.config.js12
1 files changed, 0 insertions, 12 deletions
diff --git a/config/webpack.config.js b/config/webpack.config.js
index 9bf9cee7aa8..31b29075d62 100644
--- a/config/webpack.config.js
+++ b/config/webpack.config.js
@@ -276,18 +276,6 @@ var config = {
},
}),
- // create cacheable common library bundle for all d3 chunks
- new webpack.optimize.CommonsChunkPlugin({
- name: 'common_d3',
- chunks: [
- 'monitoring',
- 'users',
- ],
- minChunks: function (module, count) {
- return module.resource && /d3-/.test(module.resource);
- },
- }),
-
// create cacheable common library bundles
new webpack.optimize.CommonsChunkPlugin({
names: ['main', 'common', 'webpack_runtime'],