[](https://travis-ci.org/tomdye/json-css-module-loader) [](https://badge.fury.io/js/json-css-module-lo
npm install json-css-module-loader

Webpack loader to load css-module json output and the corresponding css file.
ie. loading myApp.css.json will provide the requiring module with the css-module
classnames and create a require for myApp.css so that the css is included.
npm install --save json-css-module-loader
You may need to add .css.json (or similar) to your webpack resolve extensions.
`` javascript`
module: {
loaders: [
{ test: /\.css\.json$/, loader: 'json-css-module-loader' }
]
}
This loader is adapted from the json-loader`;
MIT (http://www.opensource.org/licenses/mit-license.php)