123456789101112131415161718 |
- let count = 1080
- module.exports = {
- "plugins": {
- "postcss-px-to-viewport": {
- viewportWidth: count,
- viewportHeight: 100,
- unitPrecision: 3,
- viewportUnit: 'vh',
- fontViewportUnit: 'vh',
- selectorBlackList: ['.ignore', '.hairlines'],
- minPixelValue: 0.0001,
- mediaQuery: true,
- exclude:[],
- propList: ['*','!min-width','!min-height']
- }
- }
- }
|