This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
export default {
plugins: {
"postcss-pxtorem": {
rootValue: 16, // 根元素字体大小(默认 16px)
propList: ["*"], // 需要转换的属性,* 表示所有属性
selectorBlackList: [], // 忽略的选择器,保留为 px
replace: true, // 是否直接替换值
mediaQuery: false, // 是否转换媒体查询中的 px
minPixelValue: 2, // 最小转换值,小于此值的 px 不转换
},
};