From 6de62726846b310832704b0e01d297697da3a9c5 Mon Sep 17 00:00:00 2001 From: Andrew Koroluk Date: Thu, 21 Apr 2016 17:01:45 -0400 Subject: [PATCH] fix(gulp:inject:css): remove leading `/` --- app/templates/gulpfile.babel(gulp).js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/templates/gulpfile.babel(gulp).js b/app/templates/gulpfile.babel(gulp).js index caf4d1a0c..9bbfb9c10 100644 --- a/app/templates/gulpfile.babel(gulp).js +++ b/app/templates/gulpfile.babel(gulp).js @@ -249,7 +249,7 @@ gulp.task('inject:tsconfig', () => { gulp.task('inject:css', () => { return gulp.src(paths.client.mainView) .pipe(plugins.inject( - gulp.src(`/${clientPath}/{app,components}/**/*.css`, {read: false}) + gulp.src(`${clientPath}/{app,components}/**/*.css`, {read: false}) .pipe(plugins.sort()), { starttag: '',