From 194883fc6a57b7646a0c045003152c270362dcea Mon Sep 17 00:00:00 2001 From: Maximilian Hils Date: Mon, 21 Aug 2017 22:47:15 +0200 Subject: [PATCH] fix gulpfile copy mistake --- web/gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/gulpfile.js b/web/gulpfile.js index 29740e839..b7c4037d0 100644 --- a/web/gulpfile.js +++ b/web/gulpfile.js @@ -84,7 +84,7 @@ gulp.task("styles-app-prod", function () { styles(conf.css.app, false); }); gulp.task("styles-vendor-prod", function () { - styles(conf.css.app, false); + styles(conf.css.vendor, false); });