Skip to content

Latest commit

 

History

History
25 lines (20 loc) · 318 Bytes

README.md

File metadata and controls

25 lines (20 loc) · 318 Bytes

webpack-sass

Webpack sass loader

Instalation

npm install webpack-sass --save-dev

Usage

For SCSS

module.exports = {
    module: {
        loaders: [
            {
                test: /\.scss$/,
                loader: "webpack-sass"
            }
        ]
    }
}