Use postcss-modules-local-by-default

This commit is contained in:
Nicolas Gallagher
2015-06-09 14:08:48 -07:00
parent 90779f702a
commit 78b23428bd
26 changed files with 249 additions and 243 deletions
+2 -1
View File
@@ -1,4 +1,5 @@
var autoprefixer = require('autoprefixer-core');
var localcss = require('postcss-modules-local-by-default');
module.exports = {
module: {
@@ -15,5 +16,5 @@ module.exports = {
}
]
},
postcss: [ autoprefixer ]
postcss: [ autoprefixer, localcss ]
};