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>2017-03-16 06:08:08 +0300
committerMike Greiling <mike@pixelcog.com>2017-03-22 04:20:01 +0300
commitd0db96661cbc816fe337fbd80ad8c1812c945348 (patch)
treedcc65a95b2c5003f0a1c28d6c2d133711d263b3f /config
parent6a3980ef4df7a159f5899bef86084bd931acc76d (diff)
utilize ES module distribution for Vue in webpack
Diffstat (limited to 'config')
-rw-r--r--config/webpack.config.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/webpack.config.js b/config/webpack.config.js
index ddc884cad0d..a38c7967002 100644
--- a/config/webpack.config.js
+++ b/config/webpack.config.js
@@ -132,7 +132,7 @@ var config = {
'empty_states': path.join(ROOT_PATH, 'app/views/shared/empty_states'),
'icons': path.join(ROOT_PATH, 'app/views/shared/icons'),
'vendor': path.join(ROOT_PATH, 'vendor/assets/javascripts'),
- 'vue$': 'vue/dist/vue.common.js',
+ 'vue$': 'vue/dist/vue.esm.js',
}
}
}