/* * @LastEditors: John * @Date: 2024-06-17 18:25:10 * @LastEditTime: 2024-07-22 13:59:05 * @Author: John */ export default { plugins: { autoprefixer: {}, "postcss-pxtorem": { rootValue: 37.5, propList: ["*"], exclude: (e) => { if (/.*-m\.css$/.test(e) || /.*-m.module\.css$/.test(e)) { // console.log(e); return false; } return true; }, }, }, };