Skip to content
Snippets Groups Projects
postcss.config.js 215 B
Newer Older
  • Learn to ignore specific revisions
  • module.exports = {
      plugins: {
        autoprefixer: {
          browsers: [
            'last 2 versions',
            'IE >= 11',
            'iOS >= 9',
          ],
        },
        'postcss-object-fit-images': {},
        cssnano: {},
      },
    };