postcss.config.js 389 B

123456789101112131415161718
  1. module.exports = {
  2. plugins: {
  3. 'postcss-px-to-viewport': {
  4. viewportWidth: 750,
  5. unitPrecision: 2,
  6. propList: ['*'],
  7. viewportUnit: 'rpx',
  8. fontViewportUnit: 'rpx',
  9. selectorBlackList: [],
  10. minPixelValue: 1,
  11. mediaQuery: false,
  12. replace: true,
  13. exclude: [/node_modules/],
  14. landscape: false,
  15. unitToConvert: 'px'
  16. }
  17. }
  18. }