mirror of
https://github.com/jiangrui1994/CloudSaver.git
synced 2026-01-09 14:48:47 +08:00
16 lines
371 B
JavaScript
16 lines
371 B
JavaScript
module.exports = {
|
|
plugins: {
|
|
"postcss-pxtorem": {
|
|
rootValue({ file }) {
|
|
return file.indexOf("vant") !== -1 || file.indexOf("mobile") !== -1 ? 50 : 75;
|
|
},
|
|
propList: ["*"],
|
|
exclude: (file) => {
|
|
return !file.includes("mobile") && !file.includes("vant");
|
|
},
|
|
minPixelValue: 2,
|
|
mediaQuery: false,
|
|
},
|
|
},
|
|
};
|