.postcssrc.js 377 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":{
  9. rootValue: 37.5,
  10. //忽略border和font-size相关属性
  11. propList:["*","!border*"]
  12. }
  13. }
  14. }