The code powering m.abunchtell.com https://m.abunchtell.com
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

postcss.config.js 162 B

1234567
  1. module.exports = ({ env }) => ({
  2. plugins: {
  3. autoprefixer: {},
  4. 'postcss-object-fit-images': {},
  5. cssnano: env === 'production' ? {} : false,
  6. },
  7. });