Why is my VS Code live sass compiler settings not compiling my scss file?

Viewed 9

I have a lot of scss partials so I changed the settings to this: ```{ "es6-css-minify.cssPostfix": "", "liveSassCompile.settings.autoprefix": [

],
"liveSassCompile.settings.formats": [
    {
        "format": "compressed",
        "extensionName": ".css",
        "savePath": "/wp-content/themes/dawn-child",
    }
],
"liveSassCompile.settings.includeItems": [ "/wp-content/themes/dawn-child/style.scss" ],

}

but this is not compiling scss files in the mentioned folder. I even tried to change the saved path to dawn-child and dawn-child/style.css but neither seemed to work.

I'm using the glenn marks live sass compiler. Is there anything wrong with my settings?

0 Answers
Related