wikijs-fork/dev/config/postcss.config.js
2018-02-03 16:48:25 -05:00

15 lines
250 B
JavaScript

module.exports = {
plugins: {
'autoprefixer': {},
'cssnano': {
preset: ['default', {
discardComments: {
removeAll: true
}
}]
},
'postcss-flexbugs-fixes': {},
'postcss-flexibility': {}
}
}