react-toolbox/webpack/postcss.config.js

19 lines
380 B
JavaScript

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': {},
'postcss-cssnext': {},
'postcss-reporter': {
clearMessages: true
}
}
}