zbH5/postcss.config.js
kaizheng(郑凯) b19cdb11c9 初始化
2025-01-28 15:25:35 +08:00

15 lines
511 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": {
// 判断是否是vant的文件 如果是就使用 37.5为根节点字体大小
rootValue({ file }) {
// 否则使用75因为vant使用的设计标准为375 但市场现在的主流设置尺寸是750
return file.indexOf("vant") !== -1 ? 37.5 : 75;
},
// 配置的文件尺寸需要转化为rem *表示所有的都要转化
// 需要转换的css属性默认*全部
propList: ["*"],
},
},
};