@suyunfe/postcss-px2rem-extend
v1.1.0
Published
Postcss version of px2rem
Downloads
7
Readme
@suyunfe/postcss-px2rem-extend
参数
其他属性参考
|属性|值|解释|
|---|---|---|
|exclude|string
|忽略该文件,不进行px2rem|
|rule|Array
|自定义规则,优先级低于exclude,数组中每个对象包含name option
字段,name
为字符串,option
为重新定义的配置|
用法
1、syt组件库下的样式不进行rem转化
module.exports = {
plugins: {
'@suyunfe/postcss-px2rem-extend': {
remUnit: projectConfig.css.rem.remUnit * 2,
exclude: 'node_modules/syt/**/*.css'
}
}
};
2、为不同的样式库制定不同的rem转换规则
module.exports = {
plugins: {
'@suyunfe/postcss-px2rem-extend': {
remUnit: projectConfig.css.rem.remUnit * 2,
rule: [{
name: 'node_modules/syt/**/*.css',
option: {
remUnit: projectConfig.css.rem.remUnit
}
}]
}
}
};