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