'Right path for live sass compiler?
What is the right path if ever I already have style/css/main.css folder? How can I map livesasscompile on the same folder? Because it will automatically map on my scss folder.
"liveSassCompile.settings.formats": [
{
"format": "expanded",
"extensionName": ".css",
"savePath": PATH
}
],
"liveSassCompile.settings.generateMap": true
}
Solution 1:[1]
That are the settings I use ... maybe you like to try it:
// note: remove comments when use
"settings": {
// output: generate files to ...
// null = same folder as Sass file
"liveSassCompile.settings.formats":[
{
"format": "expanded",
"extensionName": ".css",
"savePath": null
},
// optional: add more SASS outputs ...
],
"liveSassCompile.settings.generateMap": true,
} //settings
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | Brebber |