Answers for "sass compile com,mand"

CSS
0

sass compile minified

sass --watch a.scss:a.css --style compressed
Posted by: Guest on August-14-2020
-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

Browse Popular Code Answers by Language