21 lines
556 B
JavaScript
21 lines
556 B
JavaScript
module.exports = {
|
|
plugins: {
|
|
'postcss-px-to-viewport-8-plugin': {
|
|
unitToConvert: 'px',
|
|
viewportWidth: 375,
|
|
unitPrecision: 5,
|
|
propList: ['*'],
|
|
viewportUnit: 'vw',
|
|
fontViewportUnit: 'vw',
|
|
selectorBlackList: [],
|
|
minPixelValue: 1,
|
|
mediaQuery: false,
|
|
replace: true,
|
|
exclude: [/node_modules\/vant/i],
|
|
landscape: false,
|
|
landscapeUnit: 'vw',
|
|
landscapeWidth: 568,
|
|
},
|
|
},
|
|
}
|