gitbutler/apps/desktop/postcss.config.js
2024-08-08 14:51:37 +02:00

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