Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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.

like image 773
Shawon Avatar asked Dec 06 '25 14:12

Shawon


1 Answers

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
like image 127
piedpipr Avatar answered Dec 09 '25 04:12

piedpipr