node-sass でSassをコンパイル
3706 ワード
使用したIDE
Angular IDE
https://www.genuitec.com/products/angular-ide/
インストール
Angular IDE
https://www.genuitec.com/products/angular-ide/
scssファイルを用意
hoge.scss
$bg1: #fff;
$w: 500px;
$h: 100%;
html,body {
background-color: $bg1;
}
.style-wrap {
height: $h;
width: $w;
border: 1px #ccc solid;
}
実際にコンパイルしてみる
$ node-sass hoge.scss hoge.css --output-style expanded
$ node-sass hoge.scss hoge.css --output-style expanded
同じディレクトリにCSSファイルが作られる
hoge.css
html, body {
background-color: #fff;
}
.style-wrap {
height: 100%;
width: 500px;
border: 1px #ccc solid;
}
Author And Source
この問題について(node-sass でSassをコンパイル), 我々は、より多くの情報をここで見つけました https://qiita.com/RIKIgigasu/items/94d4147c0b3a70fb880b著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .