GaochunDataBigScreen/postcss.config.js

10 lines
286 B
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

module.exports = {
plugins: [
require('postcss-pxtorem')({
rootValue: 22,
propList: ['*'],
minPixelValue: 2 // 设置最小的转换数值如果为1的话只有2px以上的值才会被转换
}),
// 其他插件...
],
};