mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-11-24 05:29:51 +03:00
21 lines
414 B
JavaScript
21 lines
414 B
JavaScript
import autoprefixer from 'autoprefixer';
|
|
import postcssNesting from 'postcss-nesting';
|
|
import pxToRem from 'postcss-pxtorem';
|
|
|
|
export default {
|
|
plugins: [
|
|
//But others, like autoprefixer, need to run after,
|
|
autoprefixer,
|
|
pxToRem({
|
|
rootValue: 16,
|
|
unitPrecision: 5,
|
|
propList: ['*'],
|
|
selectorBlackList: [],
|
|
replace: true,
|
|
mediaQuery: false,
|
|
minPixelValue: 0
|
|
}),
|
|
postcssNesting()
|
|
]
|
|
};
|