Shay Rosenfeld
Shay Rosenfeld
NNuxt
Created by suhaylmv on 11/17/2024 in #❓・help
Tailwind works, but doesn't show suggestions (intellisense) in a Nuxt project
No description
8 replies
NNuxt
Created by suhaylmv on 11/17/2024 in #❓・help
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 module
8 replies
NNuxt
Created by suhaylmv on 11/17/2024 in #❓・help
Tailwind works, but doesn't show suggestions (intellisense) in a Nuxt project
you don't need this:
postcss: {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
},
postcss: {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
},
for css file path use this config inside nuxt.config.ts:
tailwindcss: {
cssPath: '~/assets/css/tailwind.scss',
}
tailwindcss: {
cssPath: '~/assets/css/tailwind.scss',
}
for content inside of tailwind config file I use this ususally: content: ['./src/**/*.{html,js,ts}'], because @nuxtjs/tailwindcss deals with all the regular pages
8 replies
NNuxt
Created by VanishDark on 9/16/2024 in #❓・help
project with MongoDB
oh yea. And I always enable all possible logging, can never know where you'll find the issue 😉
10 replies
NNuxt
Created by VanishDark on 9/16/2024 in #❓・help
project with MongoDB
isn't amplify supposed to support Nuxt SSR with zero config?
10 replies