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.

2 Answers

npm uninstall tailwindcss

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

npm uninstall autoprefixer

npm uninstall postcss

Use yarn remove PACKAGE_NAME for yarn users

When you use npm:

npm uninstall tailwindcss

When you use yarn:

yarn remove tailwindcss

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge that you have read and understand our privacy policy and code of conduct.

Sarah Jenkins

Sarah Jenkins

Senior Technology Editor & AI Specialist

Sarah Jenkins is a veteran tech journalist with over 12 years of experience covering artificial intelligence, mobile innovations, and digital ethics. Her insights have appeared in leading technology publications worldwide.

Share this article
Twitter Facebook Pinterest