123456789101112131415161718192021 |
- module.exports = {
- plugins: {
- 'postcss-px-to-viewport': {
- unitToConvert: 'px',
- viewportWidth: 1920,
- unitPrecision: 5,
- propList: ['*'],
- viewportUnit: 'vw',
- fontViewportUnit: 'vw',
- selectorBlackList: [],
- minPixelValue: 1,
- mediaQuery: false,
- replace: true,
- exclude: undefined,
- include: undefined,
- landscape: false,
- landscapeUnit: 'vw',
- landscapeWidth: 1920
- }
- }
- };
|