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