Answers for "how to make scss file"

CSS
-2

how to compile scss to css

// Install node-sass
npm i node-sass

// In package.json:  
"scripts": {
	  ...
      "scss": "node-sass — watch scss -o css"
}

// Run the compilation
npm run scss
Posted by: Guest on April-25-2021
0

how to save scss file

SAVE SCSS FILE BY FIRSTING CREATING A FOLDER NAMED SCSS THE N SAVE IT USING VSCODE
Posted by: Guest on March-17-2021

Browse Popular Code Answers by Language