From 619dfda6fa407f944991efb77e41fe2322fdecc3 Mon Sep 17 00:00:00 2001 From: Tobias Johansson Date: Wed, 3 Apr 2019 17:43:25 +0200 Subject: [PATCH] Only use minified vue if built as production --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 92336797..37cff112 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -152,7 +152,7 @@ gulp.task('scripts_concat_tutti', function(done) { let toUglify = [ source.jquery + 'dist/jquery.min.js', - source.vue + 'dist/vue.min.js', + source.vue + (enabled.uglify ? 'dist/vue.min.js' : 'dist/vue.js'), source.popper + 'dist/umd/popper.min.js', source.bootstrap + 'js/dist/index.js', source.bootstrap + 'js/dist/util.js',