码迷,mamicode.com
首页 > Web开发 > 详细

解决PostCSS配置报警告问题

时间:2019-08-10 11:39:41      阅读:3369      评论:0      收藏:0      [点我收藏+]

标签:you   pre   browser   exp   更新   解决   other   auto   ports   

问题描述:

 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前缀
  ]
}

即可解决

解决PostCSS配置报警告问题

标签:you   pre   browser   exp   更新   解决   other   auto   ports   

原文地址:https://www.cnblogs.com/tdd-qdkfgcs/p/11330883.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!