Files
tashow-h5/projects/translate-h5/postcss.config.js
2025-09-05 15:18:10 +08:00

15 lines
445 B
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

export default {
plugins: {
"postcss-pxtorem": {
rootValue: 16, // 75表示750设计稿37.5表示375设计稿建议设置成37.5因为可以兼容大部分移动端ui库
unitPrecision: 5,
propList: ["*"],
selectorBlackList: [],
replace: true,
mediaQuery: false,
minPixelValue: 0,
selectorBlackList: ["norem"], // 过滤掉norem-开头的class不进行rem转换
},
},
};