解决PostCSS配置报警告问题

Posted tdd-qdkfgcs

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决PostCSS配置报警告问题相关的知识,希望对你有一定的参考价值。

问题描述:

 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配置报警告问题的主要内容,如果未能解决你的问题,请参考以下文章

No PostCSS Config found in报错解决

Error: No PostCSS Config found in... 报错 踩坑记

解决 : ValidationError: Invalid options object. PostCSS Loader ......

如何让 postcss 配置与 Nuxt 一起使用?

Tailwind 和 Storybook 设置 postcss 配置问题

Nuxt 中的 Tailwind PostCss 配置