css-object-loader icon indicating copy to clipboard operation
css-object-loader copied to clipboard

Webpack loader to load CSS into a camelCased object

Results 2 css-object-loader issues
Sort by recently updated
recently updated
newest added

I've tried with both css-loader and postcss-loader; my Webpack config is as follows: ``` module:{ rules: [ { test: /\.(css)$/, loaders: ["css-object-loader", "postcss-loader", "css-loader"], exclude: /node_modules/, } ] } ```...

Users of `css-loader` have become accustomed to having `url('...')` statements processed by `url-loader` and `file-loader`. This loader should emit fonts and images in the same exact way that `css-loader` does....

enhancement
help wanted