marvin/postcss.config.js
Robert Nasarek 5ada72873f first commit
2022-08-25 13:30:44 +02:00

16 lines
331 B
JavaScript

module.exports = {
plugins: {
'postcss-import': {},
'postcss-nested': {},
'postcss-preset-env': {},
'postcss-pxtorem': {
rootValue: 16,
unitPrecision: 5,
propList: ['*'],
selectorBlackList: ['html', 'body'],
replace: true,
mediaQuery: false,
minPixelValue: 0
}
}
}