postcss.config.js 343 B

12345678910111213
  1. module.exports = {
  2. plugins: {
  3. 'postcss-pxtorem': {
  4. // rootValue({ file }) {
  5. // return file.indexOf('vant') !== -1 ? 37.5 : 75;
  6. // },
  7. rootValue: 37.5,
  8. propList: ['*'],
  9. selectorBlackList: [".van"],
  10. exclude: "/node_modules",
  11. },
  12. },
  13. };