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.
module.exports = {
plugins: [
require('postcss-pxtorem')({
rootValue: 22,
propList: ['*'],
minPixelValue: 2 // 设置最小的转换数值,如果为1的话,只有2px以上的值才会被转换
}),
// 其他插件...
],
};