I want to compile all my *.scss files residing in a folder using web compiler in VS2019

411 views Asked by At

Is it possible to compile all .scss files residing in a folder using web compiler in Visual Studio 2019? I don't want to specify each and every file. I tried something like this.

[
  {
    "outputFile": "wwwroot/assets/css/pages/",
    "inputFile": "wwwroot/assets/sass/pages/**/*.scss",
    "minify": { "enabled": true },
    "includeInProject": true,
    "options": { "sourceMap": true }
  }
]
0

There are 0 answers