Gulp-sass will not compile to CSS

前端 未结 1 508
北荒
北荒 2021-01-25 14:44

I\'m not able to get grunt-sass to compile to .css. Have seen a load of other similar posts and utilized suggestions but nothing seems to work.

I can get other plugins w

相关标签:
1条回答
  • 2021-01-25 15:37

    If you want the sass task to execute when you run gulp from the command-line, add it as a dependency of the default task:

    gulp.task('default', ['sass'], function() {
      //other stuff
    });
    
    0 讨论(0)
提交回复
热议问题