12345678910111213141516 |
- // postcss.config.js
- module.exports = {
- plugins: {
- "postcss-pxtorem": {
- rootValue: 18, // 换算的基数
- selectorBlackList: ["-nopx"], // 忽略转换正则匹配项 列入一些ui库, ['.el'] 就是忽略elementUI库
- propList: ["*"],
- exclude: file => {
- // if (file.includes("index.html")) {
- // return true
- // }
- return false
- }
- }
- }
- }
|