Fix notif styles.
The default `redux-notifications` styles shouldn't be run through the module prefixer.
This commit is contained in:
parent
4c7eaf1bba
commit
6d7aebb64f
@ -13,11 +13,19 @@ module.exports = {
|
||||
exclude: /node_modules/,
|
||||
},
|
||||
{
|
||||
/* CSS loader for npm modules that are shipped with CSS.
|
||||
/* CSS loader for npm modules that are shipped with CSS that should be loaded without processing.
|
||||
List all of theme in the array
|
||||
*/
|
||||
test: /\.css$/,
|
||||
include: [/redux-notifications/, /react-toolbox/, /normalize.css/],
|
||||
include: [/redux-notifications/],
|
||||
use: ExtractTextPlugin.extract({
|
||||
fallback: 'style-loader',
|
||||
use: 'css-loader',
|
||||
}),
|
||||
},
|
||||
{
|
||||
test: /\.css$/,
|
||||
include: [/react-toolbox/, /normalize.css/],
|
||||
use: ExtractTextPlugin.extract({
|
||||
fallback: 'style-loader',
|
||||
use: [
|
||||
|
Loading…
x
Reference in New Issue
Block a user