7

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.

Shawon
  • 73
  • 1
  • 1
  • 3

2 Answers2

10

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

piedpipr
  • 155
  • 2
  • 7
9

When you use npm:

npm uninstall tailwindcss

When you use yarn:

yarn remove tailwindcss
Igor Gonak
  • 2,050
  • 2
  • 10
  • 17