12345678910111213141516171819 |
- module.exports = {
- plugins: {
- 'postcss-px-to-viewport': {
- // options
- unitToConvert: 'px',
- viewportWidth: 1920,
- viewportHeight: 1080,
- unitPrecision: 3,
- propList: ['*'],
- viewportUnit: 'vw',
- fontViewportUnit: 'vw',
- selectorBlackList: ['.no-pxconvert2vw'],
- minPixelValue: 1,
- mediaQuery: false,
- replace: true,
- exclude: /(\/|\\)(node_modules)(\/|\\)/,
- },
- },
- };
|