1.0.2 • Published 8 years ago

small-style-loader v1.0.2

Weekly downloads
2
License
MIT
Repository
github
Last release
8 years ago

Install

npm install small-style-loader --save

Usage

Documentation: Using loadershttp://webpack.github.io/docs/using-loaders.html

Smaller than style-loader

    //config
    module: {
        loaders: [{
            test: /\.css$/,
            loader: 'small-style-loader'
        },{
            test: /\.less$/,
            loader: 'small-style-loader!less-loader'
        }]
    }

    //options
    //insertAt options default is bottom
    module: {
        loaders: [{
            test: /\.css$/,
            loader: 'small-style-loader?{"insertAt":"top"}'
        },{
            test: /\.less$/,
            loader: 'small-style-loader?{"insertAt":"top"}!less-loader'
        }]
    }

LICENSE

MIT http://www.opensource.org/licenses/mit-license.php