postcss.config.js 561 B

123456789101112131415161718192021
  1. // postcss.config.js
  2. import pxToViewport from 'postcss-px-to-viewport-8-plugin'
  3. export default {
  4. plugins: [
  5. pxToViewport({
  6. unitToConvert: 'px',
  7. viewportWidth: 375, // ✅ 这里建议改成 375,更贴近主流 H5 设计稿
  8. unitPrecision: 6,
  9. propList: ['*'],
  10. viewportUnit: 'vw',
  11. fontViewportUnit: 'vw',
  12. selectorBlackList: ['ignore', /^van-/], // ✅ 用正则更稳妥
  13. minPixelValue: 1,
  14. mediaQuery: false,
  15. replace: true,
  16. exclude: [/node_modules/],
  17. landscape: false,
  18. }),
  19. ],
  20. }