postcss.config.js 1.1 KB

123456789101112131415161718
  1. let count = 1080
  2. module.exports = {
  3. "plugins": {
  4. "postcss-px-to-viewport": {
  5. viewportWidth: count, // 视窗的宽度,对应的是我们设计稿的宽度,一般是750
  6. viewportHeight: 100, // 视窗的高度,根据750设备的宽度来指定,一般指定1334,也可以不配置
  7. unitPrecision: 3, // 指定`px`转换为视窗单位值的小数位数(很多时候无法整除)
  8. viewportUnit: 'vh', // 指定需要转换成的视窗单位,建议使用vw
  9. fontViewportUnit: 'vh',
  10. selectorBlackList: ['.ignore', '.hairlines'], // 指定不转换为视窗单位的类,可以自定义,可以无限添加,建议定义一至两个通用的类名
  11. minPixelValue: 0.0001, // 小于或等于`1px`不转换为视窗单位,你也可以设置为你想要的值
  12. mediaQuery: true, // 允许在媒体查询中转换`px`
  13. exclude:[], //以Tabbar文件开头的不转化
  14. propList: ['*','!min-width','!min-height']
  15. }
  16. }
  17. }