postcss-pxtorem
postcss-pxtorem copied to clipboard
A postcss plugin that converts px to rem. px 转 rem 的 postcss 插件
Results
2
postcss-pxtorem issues
Sort by
recently updated
recently updated
newest added
大佬,我加了是否要在媒体查询里禁用转换的功能,不确定这个pr是不是有必要😂,因为注释禁用已经能满足了大部分需求,纯粹只是我个人需要🙃,我的项目中大量使用了媒体查询,加注释的话改的文件有点多,而且我这个逻辑可预见在多层媒体查询的嵌套里会有问题,不知道咋改🤡,太菜了,总之,如觉得无必要,请忽视即可,我可以自行构建使用
[vant适配文档](https://vant-ui.github.io/vant/#/zh-CN/advanced-usage#liu-lan-qi-gua-pei) ``` // postcss.config.js module.exports = { plugins: [ require("@minko-fe/postcss-pxtorem")({ rootValue({ file }) { return file.includes('node_modules/vant') ? 37.5 : 75; }, }), ], }; ```