postcss.config.cjs 448 B

12345678910111213141516
  1. // postcss.config.js
  2. module.exports = {
  3. plugins: {
  4. "postcss-pxtorem": {
  5. rootValue: 18, // 换算的基数
  6. selectorBlackList: ["-nopx"], // 忽略转换正则匹配项 列入一些ui库, ['.el'] 就是忽略elementUI库
  7. propList: ["*"],
  8. exclude: file => {
  9. // if (file.includes("index.html")) {
  10. // return true
  11. // }
  12. return false
  13. }
  14. }
  15. }
  16. }