tonitone120
tonitone120

Reputation: 2290

Connecting scss to css with Live Sass Compile

I'm using the 'Live Sass Compile' extension on Visual Studio Code.

What is the right path to connect css2.scss to css2.js?

enter image description here

enter image description here

Maybe a useful article

Upvotes: 0

Views: 165

Answers (1)

RPDP
RPDP

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

Related Questions