Skip to content

Latest commit

 

History

History
42 lines (30 loc) · 634 Bytes

sass.md

File metadata and controls

42 lines (30 loc) · 634 Bytes

Sass (node-sass)

Default css engine.

Configuration:

{
  "css": {
    "engine": "sass",
  }
}

Add a Sass module

Install it as dependency with npm:

npm install sass-moduleName --save

And import the module in your scss:

@import 'moduleName';

Normalize example

Install it as dependency with npm:

npm install normalize-scss --save

And import the module in your scss:

@import 'normalize.scss/normalize';