123456789101112131415161718192021 |
- module.exports = {
- plugins: {
- 'postcss-px-to-viewport': {
- unitToConvert: 'px',
- viewportWidth: 375,
- viewportUnit: 'vw',
- fontViewportUnit: 'vw',
- unitPrecision: 13,
- propList: ['*'],
- selectorBlackList: [],
- minPixelValue: 1,
- mediaQuery: false,
- replace: true,
- exclude: [/node_modules/,],
-
- landscape: false,
- landscapeUnit: 'rem',
- }
- }
- }
|