123456789101112131415161718 |
- module.exports = {
- plugins: {
- "postcss-px-to-viewport": {
- unitToConvert: "px",
- viewportWidth: 970,
- unitPrecision: 3,
- propList: ["*"],
- viewportUnit: "vh",
- fontViewportUnit: "vh",
- selectorBlackList: [],
- minPixelValue: 1,
- mediaQuery: true,
- replace: true,
-
- landscape: false
- }
- }
- }
|