xprint.website/.postcssrc.cjs
2025-11-27 11:20:44 +08:00

9 lines
382 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.

module.exports = {
plugins: {
'postcss-pxtorem': {
rootValue: 16, // 表示根元素字体大小或根据input参数返回根元素字体大小
propList: ['*'], // 可以从px更改为rem的属性, 通配符*表示启用所有属性
selectorBlackList: ['.norem'] // 过滤掉.norem开头的class不进行rem转换
}
}
}