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

15 lines
250 B
JavaScript
Raw Normal View History

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