You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
require the module you want to use (in this case gulp-sass) in your gulpfile.js
Create a new gulp task, ex:
gulp.task('sass',function(){returngulp.src('./scss/styles.scss')// the source of PRECOMPILED files.pipe(sass().on('error',sass.logError)).pipe(gulp.dest('public/css'));// the destination of COMPILED files});