In an attempt to organize my project better, I wanted to set the save location of my CSS file to its own folder within the Live Sass Compile Config (Live Sass Compile > Settings:Formats).
Initially, I set the savePath to "/css". However, when saving my main.scss file, instead of creating a css folder with a main.css file inside, it simply generated a main.css file in the same directory as my main.scss (located in a scss folder).
Even after reinstalling Visual Studio Code, my previous settings remained unchanged.
{
"format": "expanded",
"extensionName": ".css",
"savePath": "/css",
"window.zoomLevel": 0,
"editor.tabSize": 2,
"editor.wordWrap": "off"
}
The content above is what appears in my .json file. The first three lines are greyed out or blacked out (specifically the format and save path entries).
The structure displayed in my .json file seems inconsistent with the tutorials I have come across on this topic.