0.0.101 • Published 6 years ago

@arted/use-loader v0.0.101

Weekly downloads
-
License
MIT
Repository
github
Last release
6 years ago

use-loader

use css module loader for webpack

Installation

npm

$ npm install @arted/use-loader

or yarn

$ yarn add @arted/use-loader

Usage

// webpack.config.js
module.exports = {
	...
    module: {
        rules: [{
            test: /\.scss$/,
            use: [
                "@arted/use-loader", // add use function which load css module
                "style-loader", // creates style nodes from JS strings
                "@arted/css-loader", // translates CSS into CommonJS
                "@arted/sass-loader" // compiles Sass to CSS
            ]
        }]
    }
};