I'm using the 'Live Sass Compile' extension on Visual Studio Code.
What is the right path to connect css2.scss to css2.js?
I'm using the 'Live Sass Compile' extension on Visual Studio Code.
What is the right path to connect css2.scss to css2.js?
Assuming that you want css2.scss to compile into the parent folder as css2.css
Try setting the savePath using the relative path notation like, and move one level up with ../
savePath: "~/../"
Note: It would be good to have all the scss in a separate folder, there are a few .scss file in parent css folder.
~ mean? The current folder the .scss is in?.scss file we make that connects to a .css? Even if we make new connections in different projects?