13 lines
271 B
JavaScript
13 lines
271 B
JavaScript
|
|
module.exports = {
|
||
|
|
plugins: {
|
||
|
|
// autoprefixer: {
|
||
|
|
// browsers: ['Android >= 4.0', 'iOS >= 8'],
|
||
|
|
// },
|
||
|
|
'postcss-pxtorem': {
|
||
|
|
rootValue({ file }) {
|
||
|
|
return file.indexOf('vant') !== -1 ? 37.5 : 75;
|
||
|
|
},
|
||
|
|
propList: ['*'],
|
||
|
|
},
|
||
|
|
},
|
||
|
|
};
|