Files
AdGuardHome/client_v2/postcss.config.js
Ildar Kamalov 2b3e792641 fix build
2025-07-16 17:04:23 +03:00

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'] }),
],
};