postcss.config.js 250 B

12345678910111213
  1. const _config = require("./config/index.js");
  2. module.exports = {
  3. // px转rem
  4. // 使用postcss-pxtorem
  5. plugins: {
  6. autoprefixer: {},
  7. "postcss-pxtorem": {
  8. rootValue: 20, // 最低适配1440*900
  9. propList: ["*"],
  10. },
  11. },
  12. };