shithub: hugo

ref: 3a44920e79ef86003555d8a4860c29257b2914f0
dir: /docs/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
    }
	}
};