0.0.102 • Published 6 years ago

@arted/css-loader v0.0.102

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

css-loader

css loader for webpack

Installation

npm

$ npm install @arted/css-loader

or yarn

$ yarn add @arted/css-loader

Usage

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