Skip to content

Latest commit

 

History

History
67 lines (56 loc) · 1.59 KB

how-to-use-sass.md

File metadata and controls

67 lines (56 loc) · 1.59 KB

How to Use Sass/SCSS

Note: Using plain CSS via PostCSS is recommended approach because it reduces the size of the tech stack used in the project, enforces you to learn vanilla CSS syntax with modern CSS Level 3+ features that allow you doing everything you would normally do with Sass/SCSS. Also compilation of plain .css files should work faster with postcss pre-processor than node-sass.

Step 1

Install node-sass and sass-loader modules as dev dependencies:

$ npm install node-sass --save-dev
$ npm install sass-loader --save-dev

Step 2

Update webpack.config.js file to use sass-loader for .scss files:

const config = {
  ...
  module: {
    loaders: [
      ...
      {
        test: /\.scss$/,
        loaders: [
          'style-loader',
          `css-loader?${JSON.stringify({ sourceMap: isDebug, minimize: !isDebug })}`,
          'postcss-loader?pack=sass',
          'sass-loader',
        ],
      },
      ...
    ]
  }
  ...
}

Step 3

Add one more configuration (pack) for PostCSS named sass to enable Autoprefixer for your .scss files:

const config = {
  ...
  postcss(bundler) {
    return {
      defaults: [
        ...
      ],
      sass: [
        require('autoprefixer')(),
      ],
    };
  }
  ...
}

For more information visit https://github.com/jtangelder/sass-loader and https://github.com/sass/node-sass