'How to uninstall tailwind from my react application?

I have installed react-bootstrap and tailwind together for my react app. I'm getting some conflict using both of them. So I want to uninstall tailwind.



Solution 1:[1]

When you use npm:

npm uninstall tailwindcss

When you use yarn:

yarn remove tailwindcss

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Igor Gonak