postcss.config.js 483 B

12345678910111213
  1. module.exports = {
  2. plugins: {
  3. 'postcss-px-to-viewport': {
  4. viewportWidth: 1920, // 设计稿宽度
  5. viewportHeight: 1080, // 设计稿高度
  6. unitPrecision: 5, // 转换后的精度
  7. viewportUnit: 'vw', // 转换单位
  8. selectorBlackList: [], // 忽略的选择器
  9. minPixelValue: 1, // 最小转换值
  10. mediaQuery: false, // 设置为 false 不转换媒体查询中的 px
  11. },
  12. },
  13. };