ui
ui copied to clipboard
[Documentation] How do you configure tailwindcss now it's not in config anymore?
Before Nuxt UI, I used to load tailwindcss module this way in nuxt.config.ts:
modules: [
[
'@nuxtjs/tailwindcss',
{
cssPath: '~/assets/css/input.css',
},
],
]
But now, as the documentation asks me to remove this package from dependency and from configuration, where should I provide the related configuration?
Thanks.