You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
516 B
JavaScript

module.exports = {
plugins: {
// https://github.com/csstools/postcss-preset-env
'postcss-preset-env': {},
// https://github.com/wswmsword/postcss-mobile-forever
'postcss-mobile-forever': {
viewportWidth: file => /vant[\\/]/.test(file) ? 375 : 750,
maxDisplayWidth: 560,
unitPrecision: 3,
propList: ['*'],
selectorBlackList: ['.ignore'],
rootContainingBlockSelectorList: ['van-popup--bottom'],
disableLandscape: true,
disableDesktop: true
}
}
}