shithub: hugo

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