1234567891011121314151617181920 |
- module.exports = {
- plugins: {
- autoprefixer: {},
- "postcss-px-to-viewport": {
- unitToConvert: "px",
- viewportWidth: 1080,
- unitPrecision: 6,
- propList: ["*"],
- viewportUnit: "vh",
- fontViewportUnit: "vh",
- selectorBlackList: [],
- minPixelValue: 1,
- mediaQuery: true,
- replace: true,
- exclude: [/node_modules/],
-
- landscape: false
- }
- }
- };
|