解决PostCSS配置报警告问题

痞子三分冷 提交于 2019-11-26 19:23:23

问题描述:

 Replace Autoprefixer browsers option to Browserslist config.
  Use browserslist key in package.json or .browserslistrc file.
  Using browsers option cause some error. Browserslist config 
  can be used for Babel, Autoprefixer, postcss-normalize and other tools.
  If you really need to use option, rename it to overrideBrowserslist.

因为postCss版本更新,之前版本的配置已无效:

module.exports = {
  plugins: [
    require('autoprefixer')({
      browsers: ['last 100 versions']
    })// 自动添加css前缀
  ]
}

更换为:

module.exports = {
  plugins: [
    require('autoprefixer')({overrideBrowserslist: ['> 0.15% in CN']})// 自动添加css前缀
  ]
}

即可解决

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!