Gulp-sass will not compile to CSS

前端 未结 1 533
北荒
北荒 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)
提交回复
热议问题