mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-11-22 19:14:31 +03:00
24 lines
501 B
JavaScript
24 lines
501 B
JavaScript
import postcssBundler from '@csstools/postcss-bundler';
|
|
import autoprefixer from 'autoprefixer';
|
|
import postcssMinify from 'postcss-minify';
|
|
import postcssNesting from 'postcss-nesting';
|
|
import pxToRem from 'postcss-pxtorem';
|
|
|
|
export default {
|
|
plugins: [
|
|
pxToRem({
|
|
rootValue: 16,
|
|
unitPrecision: 5,
|
|
propList: ['*'],
|
|
selectorBlackList: [],
|
|
replace: true,
|
|
mediaQuery: false,
|
|
minPixelValue: 0
|
|
}),
|
|
autoprefixer(),
|
|
postcssNesting(),
|
|
postcssBundler(),
|
|
postcssMinify()
|
|
]
|
|
};
|