.postcssrc.js 673 B

1234567891011121314151617
  1. // https://github.com/michael-ciniawsky/postcss-load-config
  2. module.exports = {
  3. "plugins": {
  4. "autoprefixer": {},
  5. "postcss-px-to-viewport-opt": {
  6. viewportWidth: 1920, // 设计稿宽度
  7. viewportHeight: 1080, // 设计稿高度,可以不指定
  8. unitPrecision: 3, // px to vw无法整除时,保留几位小数
  9. viewportUnit: 'vw', // 转换成vw单位
  10. selectorBlackList: ['.ignore', '.hairlines'], // 不转换的类名
  11. minPixelValue: 1, // 小于1px不转换
  12. mediaQuery: false, // 允许媒体查询中转换
  13. exclude: /(\/|\\)(node_modules)(\/|\\)/ // 排除node_modules文件中第三方css文件
  14. },
  15. }
  16. }