Answer the question
In order to leave comments, you need to log in
The task does not finish the job. gulp?
Actually there is a task to compile from SCSS to CSS along the way using autoprefixer
gulp.task('scss', function(){
return gulp.src('app/scss/main.scss')
.pipe(scss())
.pipe(autoprefixer())
.pipe(gulp.dest('app/css'))
.pipe(browserSync.reload({stream: true}))
});
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question