Integrated material-ui

This commit is contained in:
Andrey Okonetchnikov
2016-09-15 18:53:24 +02:00
parent 5409cc1022
commit b2d4714c90
5 changed files with 54 additions and 3 deletions

View File

@ -12,7 +12,14 @@ module.exports = {
test: /\.((png)|(eot)|(woff)|(woff2)|(ttf)|(svg)|(gif))(\?v=\d+\.\d+\.\d+)?$/,
loader: 'url-loader?limit=100000'
},
{ test: /\.json$/, loader: 'json-loader' },
{
test: /\.json$/,
loader: 'json-loader'
},
{
test: /\.scss$/,
loader: 'style!css?modules!sass',
},
{
test: /\.css$/,
loader: 'style!css?modules&importLoaders=1&&localIdentName=cms__[name]__[local]!postcss',