postcss-pxtorem
postcss-pxtorem copied to clipboard
Use with Vant
// postcss.config.js
module.exports = {
plugins: [
require("@minko-fe/postcss-pxtorem")({
rootValue({ file }) {
return file.includes('node_modules/vant') ? 37.5 : 75;
},
}),
],
};