18 lines
438 B
JavaScript
18 lines
438 B
JavaScript
/**
|
||
* 设计稿基准宽度 1080px → 转为 vw,适配真机 / 模拟器。
|
||
* exclude node_modules:避免把 Vant 等已按自身规范编译的样式再转一遍。
|
||
*/
|
||
module.exports = {
|
||
plugins: {
|
||
'postcss-px-to-viewport': {
|
||
viewportWidth: 1080,
|
||
unitPrecision: 5,
|
||
propList: ['*'],
|
||
selectorBlackList: [],
|
||
minPixelValue: 1,
|
||
mediaQuery: false,
|
||
exclude: [/node_modules/]
|
||
}
|
||
}
|
||
};
|