about summary refs log tree commit diff
path: root/postcss.config.js
blob: 5d58d74e34be8719dcdf4bdb44ee4de5935be31c (plain) (blame)
1
2
3
4
5
6
module.exports = ({ env }) => ({
  plugins: [
    'autoprefixer',
    env === 'production' ? 'cssnano' : '',
  ],
});