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