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