ref: 2c934be8ab01e18fc2f5c56c35a6957f2d7b3af3
dir: /docs/themes/gohugoioTheme/src/css/postcss.config.js/
module.exports = {
plugins: {
'postcss-import': {},
'postcss-cssnext': {
browsers: ['last 2 versions', '> 5%'],
},
'cssnano': {
discardComments: {
removeAll: true
},
minifyFontValues: false,
autoprefixer: false
}
}
};