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