postcss.config.js 250 B

1234567891011121314
  1. module.exports = {
  2. plugins: {
  3. 'autoprefixer': {},
  4. 'cssnano': {
  5. preset: ['default', {
  6. discardComments: {
  7. removeAll: true
  8. }
  9. }]
  10. },
  11. 'postcss-flexbugs-fixes': {},
  12. 'postcss-flexibility': {}
  13. }
  14. }