.postcssrc.js 543 B

123456789101112131415161718192021222324
  1. /*
  2. * @Author: guofei
  3. * @Date: 2021-11-29 10:35:29
  4. * @LastEditors: guofei
  5. * @LastEditTime: 2021-11-30 19:34:39
  6. * @Description:
  7. * @FilePath: \fire-fighting-h5\.postcssrc.js
  8. */
  9. // https://github.com/michael-ciniawsky/postcss-load-config
  10. module.exports = {
  11. "plugins": {
  12. "postcss-import": {},
  13. "postcss-url": {},
  14. // to edit target browsers: use "browserslist" field in package.json
  15. "autoprefixer": {},
  16. // "postcss-pxtorem": {
  17. // "rootValue": 37.5,
  18. // "propList": [
  19. // "*"
  20. // ]
  21. // }
  22. }
  23. }