How to uninstall tailwind from my react application?

47.2k Views Asked by At

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.

3

There are 3 best solutions below

0
On BEST ANSWER

When you use npm:

npm uninstall tailwindcss

When you use yarn:

yarn remove tailwindcss
0
On
npm uninstall tailwindcss

also (uninstall tailwind dev dependencies, if no other package needs them)

npm uninstall autoprefixer
npm uninstall postcss

For yarn users, use:

yarn remove PACKAGE_NAME
3
On
npm remove tailwindcss

Also delete the tailwind.config file.