postcss.config.js 215 B

12345678910111213
  1. module.exports = {
  2. plugins: {
  3. autoprefixer: {
  4. browsers: [
  5. 'last 2 versions',
  6. 'IE >= 11',
  7. 'iOS >= 9',
  8. ],
  9. },
  10. 'postcss-object-fit-images': {},
  11. cssnano: {},
  12. },
  13. };