Answer the question
In order to leave comments, you need to log in
How to set up gulp less?
How to set up less in gulp so that it does not stop the compilation process on errors and integrate with browser-sync
Answer the question
In order to leave comments, you need to log in
1. Prevents gulp-plumber
from breaking on error . Good for many things: sass, less, pug, etc.
2. Integration with browser-sync as usual
browserSync = require('browser-sync').create(),
gulp.task('less', function () {
//здесь всякое разное
.pipe(browserSync.stream());
});
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question