ref: d8fdffb55268464d54558d6f9cd3874b612dc7c7
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
}
}
};