react-toolbox/webpack/postcss.config.js

19 lines
380 B
JavaScript
Raw Permalink Normal View History

2017-05-23 13:07:41 +03:00
const path = require('path');
module.exports = {
plugins: {
'postcss-import': {
root: path.join(__dirname, '../'),
path: [path.join(__dirname, '../components')]
},
'postcss-mixins': {},
'postcss-each': {},
'postcss-apply': {},
'postcss-nesting': {},
2017-05-23 13:07:41 +03:00
'postcss-cssnext': {},
'postcss-reporter': {
clearMessages: true
}
}
}