shithub: hugo

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