postcss-pxtorem icon indicating copy to clipboard operation
postcss-pxtorem copied to clipboard

Use with Vant

Open hemengke1997 opened this issue 3 years ago • 0 comments

vant适配文档

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

hemengke1997 avatar Aug 26 '22 04:08 hemengke1997