Search code examples
javascriptreactjsantdyarnpkg

How to install a specific version of antd


In the latest antd v4 to v5 migration, it is mentioned to first migrate to the most recent stable version of v4 which is v4.24.3, and then migrate to v5.

I tried doing yarn add antd

But this gives the latest stable version (5.0.1)


Solution

  • Mention the version at the end

    Using yarn

    yarn add antd@4.24.3
    

    Using npm

    npm i antd@4.24.3