We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
const pxtorem = require('postcss-px2rem') const postcssPresetEnv = require('postcss-preset-env') module.exports = ({ file }) => { let remUnit = null if (file && file.dirname && file.dirname.indexOf('vant') > -1) { remUnit = 37.5 } else { remUnit = 75 } return { plugins: [ pxtorem({ remUnit: remUnit, propList: ['*'], selectorBlackList: [''] }), postcssPresetEnv({ stage: 3, features: { 'nesting-rules': true, 'color-mod-function': { unresolved: 'warn' } } }) ] } }
selectorBlackList 不管我设置如何匹配都是不生效的,而且查询了源代码根本没有selectorBlackList 这个配置选项
The text was updated successfully, but these errors were encountered:
@yangyiming 这个插件本身就不支持吧,应该去这里寻求帮助吧
Sorry, something went wrong.
No branches or pull requests
selectorBlackList 不管我设置如何匹配都是不生效的,而且查询了源代码根本没有selectorBlackList 这个配置选项
The text was updated successfully, but these errors were encountered: