Reputation: 2290
I'm using the 'Live Sass Compile' extension on Visual Studio Code.
What is the right path to connect css2.scss
to css2.js
?
Upvotes: 0
Views: 165
Reputation: 1723
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.
Upvotes: 1