cashier-ERP/postcss.config.cjs

9 lines
249 B
JavaScript
Raw Permalink Normal View History

2024-04-20 09:54:56 +08:00
module.exports = {
plugins: {
'postcss-pxtorem': {
rootValue: 16, // 设计稿宽度的 1/10
propList: ['*'], // 转换所有属性的px值
// selectorBlackList: ['html'], // 排除html选择器
},
},
};