css-raw-loader

CSS Raw loader module for Webpack

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
css-raw-loader
0.1.26 years ago9 years agoMinified + gzip package size for css-raw-loader in KB

Readme

CSS Raw loader for Webpack
!Downloads12 !Version32 !ISC License45

About

This loader is based on the original CSS loader and the raw loader. A lot of the credit goes to @sokra. I am just enabling my own needs. It is intended to allow developers to write CSS and use Webpack without having Webpack resolve imports and image URLs from the CSS code. It will import exactly the CSS code that you wrote. It also plays nice with Less, Sass, and the ExtractTextPlugin. It will automatically produce sourcemaps for dev builds and minify for production builds.

Installation

``` npm install css-raw-loader ```

Usage

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

License

MIT Analytics