.postcssrc.js 874 B

123456789101112131415161718
  1. module.exports = {
  2. "plugins": {
  3. "autoprefixer": {},
  4. 'postcss-pxtorem': {
  5. rootValue({ file }) {
  6. console.log('file', file);
  7. // 这里需要动态设置rootValue值,以达到同时适配vant-UI和设计稿
  8. // 适配vant-UI的设计稿尺寸是375 / 10 = 37.5
  9. // 适配项目设计稿尺寸是750 / 10 = 75
  10. // 这里是判断要处理的文件是否是vant组件库的文件,是的话就按375设计稿尺寸走,否则按你项目设计稿的尺寸走,你项目是750就写75,是640就写64,如此类推
  11. return file.includes('vant') ? 37.5 : 75
  12. },
  13. // rootValue: 75, // 75表示750设计稿,37.5表示375设计稿
  14. propList: ['*'],
  15. // selectorBlackList: ['van', '.van-']
  16. },
  17. },
  18. }