Search code examples
reactjstailwind-cssreact-bootstraptailwind-css-3

How to uninstall Tailwind from React application?


I have installed React Bootstrap and Tailwind CSS together for my React app. I'm getting some conflict using both of them. So I want to uninstall Tailwind CSS.


Solution

  • When you use npm:

    npm uninstall tailwindcss
    

    When you use yarn:

    yarn remove tailwindcss