123456789101112131415161718192021 |
- module.exports = {
- plugins: {
- "postcss-px-to-viewport": {
- unitToConvert: "px",
- viewportWidth: 750,
- unitPrecision: 5,
- propList: ["*"],
- viewportUnit: "vw",
- fontViewportUnit: "vw",
- selectorBlackList: [],
- minPixelValue: 1,
- mediaQuery: false,
- replace: true,
- exclude: [/node_modules/],
- include: undefined,
- landscape: false,
- landscapeUnit: "px",
- landscapeWidth: 568,
- },
- },
- };
|