Home > Net >  How to uninstall tailwind from my react application?
How to uninstall tailwind from my react application?

Time:05-10

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.

CodePudding user response:

When you use npm:

npm uninstall tailwindcss

When you use yarn:

yarn remove tailwindcss
  • Related