shithub: hugo

ref: 30694a133a88d5f76a51d0372646e10cbeca7691
dir: /themes/gohugoioTheme/src/css/postcss.config.js/

View raw version
module.exports = {
  plugins: {
   'postcss-import': {},
   'postcss-cssnext': {
	     browsers: ['last 2 versions', '> 5%'],
	     },
    'cssnano': {
      discardComments: {
        removeAll: true
      },
      minifyFontValues: false,
      autoprefixer: false
    }
	}
};