123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- module.exports = {
- plugins: {
-
- 'postcss-px-to-viewport': {
-
-
- unitToConvert: 'px',
-
- viewportWidth: 1920,
-
- unitPrecision: 5,
-
- propList: ['*'],
-
- viewportUnit: 'vw',
-
- fontViewportUnit: 'vw',
-
- selectorBlackList: [/^.ant-modal$/,/^.ant-input$/,/^.ant-form-item$/,/^.ant-form$/,/^.ant-modal-body$/,/^.ant-modal-header$/,/^.ant-modal-content$/,
- /^.ant-input-lg$/,/^.van-nav-bar$/,/^.van-nav-bar__content$/,/^.van-nav-bar__title$/,/^.van-nav-bar__right$/,/^.van-dropdown-menu__title$/,/^.van-cell$/,
- /^.van-dropdown-menu__bar$/,/^.van-nav-bar__left$/,/^.ad-free-img$/,/^.ad-free-content$/,/^.home-ad-xw$/,/^.ant-collapse$/],
-
- minPixelValue: 1,
-
- mediaQuery: false,
-
- replace: true,
-
- exclude: undefined,
-
- include: undefined,
-
- landscape: false,
-
- landscapeUnit: 'vw',
-
- landscapeWidth: 568
- }
- }
- }
|