css-object-loader
css-object-loader copied to clipboard
Webpack loader to load CSS into a camelCased object
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....