| 123456789101112131415161718 |
- module.exports = {
- plugins: {
- 'postcss-px-to-viewport': {
- viewportWidth: 750,
- unitPrecision: 2,
- propList: ['*'],
- viewportUnit: 'rpx',
- fontViewportUnit: 'rpx',
- selectorBlackList: [],
- minPixelValue: 1,
- mediaQuery: false,
- replace: true,
- exclude: [/node_modules/],
- landscape: false,
- unitToConvert: 'px'
- }
- }
- }
|