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...
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