gulp-clean-css Questions
2
Solved
I am using gulp minifyCss to minify my css to reduce filesize. My gulp task looks something like this:
gulp.task('minify-css', function() {
return gulp.src('styles/*.css')
.pipe(concatCss("all.c...
Preterit asked 12/8, 2015 at 8:12
2
Solved
I'm trying to concatenate & minify all bower package assets including css. One of them is bootswatch design and it imports google fonts. Problem is, running css tasks on it results in timeout e...
Zebulen asked 17/8, 2015 at 11:36
1
Solved
So I'm noticing that my current Gulp setup isn't importing remote fonts such as google fonts. In my main.scss file I have:
@import url(https://fonts.googleapis.com/css?family=Lato:400,100,100itali...
Underpants asked 23/10, 2015 at 17:43
1
Solved
I started a project with [RDash angular dashboard][1] which using gulp.
this is the first time I work with gulp and the problem is that while I'm working locally I can't debug because it minify css...
Macias asked 29/10, 2015 at 8:42
2
Solved
When I use the following code in my .scss file
@import url('//fonts.googleapis.com/css?family=SomeFont:400,700,400italic');
the SASS parser I use (nodejs gulp-sass) happily downloads the file ...
Turgot asked 14/8, 2015 at 2:24
1
© 2022 - 2024 — McMap. All rights reserved.