zhzf/client/postcss.config.cjs

15 lines
260 B
JavaScript
Raw Normal View History

2025-02-21 11:41:51 +08:00
module.exports = {
plugins: {
autoprefixer: {},
'postcss-pxtorem': {
rootValue: 16,
unitPrecision: 5,
propList: ['*'],
selectorBlackList: [],
replace: true,
mediaQuery: false,
minPixelValue: 0,
},
},
}