16 lines
331 B
JavaScript
16 lines
331 B
JavaScript
module.exports = {
|
|
plugins: {
|
|
'postcss-import': {},
|
|
'postcss-nested': {},
|
|
'postcss-preset-env': {},
|
|
'postcss-pxtorem': {
|
|
rootValue: 16,
|
|
unitPrecision: 5,
|
|
propList: ['*'],
|
|
selectorBlackList: ['html', 'body'],
|
|
replace: true,
|
|
mediaQuery: false,
|
|
minPixelValue: 0
|
|
}
|
|
}
|
|
}
|