about summary refs log tree commit diff
path: root/postcss.config.js
blob: 84701e4ade38bd0bb375f7f6af21eaa7f3f460a0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
module.exports = {
  plugins: {
    autoprefixer: {
      browsers: [
        'last 2 versions',
        'IE >= 11',
        'iOS >= 9',
      ],
    },
    'postcss-object-fit-images': {},
    cssnano: {},
  },
};