Agile育成ブログ
未来を変える喜びを
未分類

node-sassをつかってscssをcssにコンパイルする


Warning: count(): Parameter must be an array or an object that implements Countable in /home/xs638785/agile-software.site/public_html/wp-content/plugins/rich-table-of-content/functions.php on line 490
npm init
npm install node-sass --save-dev

package.jsonと同じ階層にscssフォルダとcssフォルダを置き

  "scripts": {
    "compile:sass": "node-sass sass/main.scss css/style.css"
  },
npm run compile:sass
変更が反映される
  "scripts": {
    "compile:sass": "node-sass sass/main.scss css/style.css -w"
  },

You cannot copy content of this page