Shay Rosenfeld
Tailwind works, but doesn't show suggestions (intellisense) in a Nuxt project
If you create a completely new nuxt project and install tailwind using nuxt-module, do you have this as well? also you can try deleting node modules and reinstalling without cache
25 replies
Tailwind works, but doesn't show suggestions (intellisense) in a Nuxt project
https://tailwindcss.com/docs/guides/nuxtjs#modules If you look at the documentation here, the
postcss
and autoprefixer
are only needed if you don't install tailwind using the nuxt module25 replies
Tailwind works, but doesn't show suggestions (intellisense) in a Nuxt project
you don't need this:
for css file path use this config inside
nuxt.config.ts
:
for content
inside of tailwind config file I use this ususally:
content: ['./src/**/*.{html,js,ts}'],
because @nuxtjs/tailwindcss
deals with all the regular pages25 replies