postcss.config.js 544 B

123456789101112131415
  1. // https://github.com/michael-ciniawsky/postcss-load-config
  2. module.exports = {
  3. plugins: {
  4. // "postcss-import": {},
  5. // "postcss-url": {},
  6. // to edit target browsers: use "browserslist" field in package.json
  7. autoprefixer: {},
  8. 'postcss-pxtorem': { // yarn add postcss-pxtorem -D "postcss-pxtorem": "^5.1.1",
  9. rootValue: 100, // 结果为:设计稿元素尺寸750/,比如元素宽32px,最终页面会换算成 2rem 大写Px/PX 不转换浏览器能识别
  10. minPixelValue: 2,
  11. propList: ['*'],
  12. },
  13. },
  14. }