Answers for "how to import the scss file after the compile"

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

Code answers related to "how to import the scss file after the compile"

Browse Popular Code Answers by Language