123456789101112131415161718192021 |
- export default {
- plugins: {
- tailwindcss: {},
- 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
- }
- },
- }
|