/* eslint-disable */
// https://github.com/michael-ciniawsky/postcss-load-config

import autoprefixer from 'autoprefixer';
// Uncomment the following line if you want to support RTL CSS
// import rtlcss from 'postcss-rtlcss';

export default {
    plugins: [
        // https://github.com/postcss/autoprefixer
        autoprefixer({
            overrideBrowserslist: [
                'last 4 Chrome versions',
                'last 4 Firefox versions',
                'last 4 Edge versions',
                'last 4 Safari versions',
                'last 4 Android versions',
                'last 4 ChromeAndroid versions',
                'last 4 FirefoxAndroid versions',
                'last 4 iOS versions',
            ],
        }),

        // https://github.com/elchininet/postcss-rtlcss
        // If you want to support RTL CSS, uncomment the following line:
        // rtlcss(),
    ],
};