mirror of
https://git.vectorsigma.ru/public/AdGuardHome.git
synced 2026-07-28 23:49:09 +00:00
14 lines
356 B
JavaScript
14 lines
356 B
JavaScript
import autoprefixer from 'autoprefixer';
|
|
import postcssImport from 'postcss-import';
|
|
import postcssCustomMedia from 'postcss-custom-media';
|
|
import postcssNested from 'postcss-nested';
|
|
|
|
export default {
|
|
plugins: [
|
|
postcssImport(),
|
|
postcssCustomMedia(),
|
|
postcssNested(),
|
|
autoprefixer({ overrideBrowserslist: ['last 2 versions'] }),
|
|
],
|
|
};
|