I've encountered an issue with compiling scss partials, so I made the following adjustments to my settings:
{
"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" ],
However, despite these changes, the scss files in the specified folder are still not being compiled. I also attempted altering the saved path to dawn-child
and dawn-child/style.css
, but without success.
I am utilizing the Glenn Marks Live Sass Compiler. Could there be a flaw in my configuration?