postcss.config.js 464 B

123456789101112131415161718192021
  1. module.exports = {
  2. plugins: {
  3. autoprefixer: {},
  4. "postcss-px-to-viewport-8-plugin": {
  5. unitToConvert: "px",
  6. viewportWidth: 1600,
  7. unitPrecision: 5,
  8. propList: ["*"],
  9. viewportUnit: "vw",
  10. fontViewportUnit: "vw",
  11. selectorBlackList: [],
  12. minPixelValue: 1,
  13. mediaQuery: false,
  14. replace: true,
  15. exclude: [],
  16. landscape: false,
  17. landscapeUnit: "vw",
  18. landscapeWidth: 2560,
  19. },
  20. },
  21. };