shithub: hugo

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