Error: PostCSS plugin autoprefixer requires PostCSS 8. Update PostCSS or downgrade this plugin

前端 未结 10 557
谎友^
谎友^ 2021-02-03 21:24

I am getting this error whenever I run npm start. I tried a couple of fixes but none of them work for me. I tried to change the version of autoprefixer to 9.8.6 but it didn\'t w

10条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-02-03 21:39

    Quick fix

    Downgrade your autoprefixer to version 9, use

    "autoprefixer": "^9.0.0"

    in your dev dependencies.

    More details

    PostCSS was updated to version 8, however, PostCSS CLI has not yet been updated to handle PostCSS plugins which use the new PostCSS 8+ API. Autoprefixer uses the new PostCSS 8 API since version 10.

    This is documented under known issues in the PostCSS GitHub page.

    Once PostCSS CLI is updated to handle plugins that use the new PostCSS 8+ API, this will likely not be an issue. But until then, you may need to downgrade some PostCSS plugins to avoid errors.

提交回复
热议问题