|
-
-
- module.exports = ({ file }) => {
- return {
- plugins: {
- autoprefixer: {},
- 'postcss-px-to-viewport': {
- unitToConvert: 'px',
- viewportWidth: file.includes('vant') ? 375 : 750,
- unitPrecision: 6,
- viewportUnit: 'vw',
- selectorBlackList: ['van'],
- minPixelValue: 1,
- mediaQuery: false,
- landscapeUnit: 'vw',
- landscapeWidth: 1280
- }
- }
- };
- };
|