12 lines
201 B
JavaScript
12 lines
201 B
JavaScript
module.exports = {
|
|
plugins: {
|
|
autoprefixer: {},
|
|
'postcss-pxtorem': {
|
|
rootValue: 37.5,
|
|
propList: ['*'],
|
|
selectorBlackList: ['.ignore-px'],
|
|
minPixelValue: 2
|
|
}
|
|
}
|
|
}
|