Skip to content

Commit fe3db18

Browse files
committed
Merge pull request #1813 from angular-fullstack/fix/gulp-css
fix(gulp:inject:css): remove leading `/`
2 parents 07ee3a5 + 6de6272 commit fe3db18

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: app/templates/gulpfile.babel(gulp).js

+1-1
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ gulp.task('inject:tsconfig', () => {
249249
gulp.task('inject:css', () => {
250250
return gulp.src(paths.client.mainView)
251251
.pipe(plugins.inject(
252-
gulp.src(`/${clientPath}/{app,components}/**/*.css`, {read: false})
252+
gulp.src(`${clientPath}/{app,components}/**/*.css`, {read: false})
253253
.pipe(plugins.sort()),
254254
{
255255
starttag: '<!-- injector:css -->',

0 commit comments

Comments
 (0)