CSS

scss 문법open in new window | vscode extension추천open in new window

node-sass 컴파일러

설치


$ npm install -g node-sass

사용법


$ node-sass [options] <input> [output]

# 예시
$ node-sass scss/main.scss  dist/style.css

$ node-sass --watch scss/main.scss public/main.css

옵션을 적용할 수도 있습니다. 옵션으로 --watch 혹은 -w를 입력하면, 런타임 중 파일을 감시하여 저장 시 자동으로 변경 사항을 컴파일합니다.

Last Updated:
Contributors: RiGang