wikijs-fork/dev/config/postcss.config.js

15 lines
250 B
JavaScript
Raw Normal View History

2018-01-26 00:32:53 -05:00
module.exports = {
plugins: {
'autoprefixer': {},
'cssnano': {
preset: ['default', {
discardComments: {
removeAll: true
}
}]
2018-02-03 16:48:25 -05:00
},
'postcss-flexbugs-fixes': {},
'postcss-flexibility': {}
}
2018-01-26 00:32:53 -05:00
}