Delete Tailwind from Nuxt-Project
Hey hey 👋🏻 I‘ve created a NuxtJs project. And I noticed, that the starter-app is build with tailwindcss. That‘s what also my Wappalyzer shows.
Does anybody of you may explain, how I can get rid of it? So how can I wipe out TailwindCSS from my NuxtProject?
Would be awesome! I tried uninstalling it through npm, but it’s still there 😮💨
3 Replies
There is no default installation of tailwind
Maybe the nuxt welcome component used it but you should remove that anyway 😁
There are precompiled components that use tailwind styles, these inline styles are bundled with and are exclusive to those components. Tailwind itself is not bundled. The wappalyzer has just identified those class names attributed to the tailwind library and is assuming tailwind is being used.
Okay, thanks @manniL / TheAlexLichter! So I just have to delete the NuxtWelcome component & the Tailwind should be gone?