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

13 lines
185 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-01-26 05:32:53 +00:00
}