Override Layer tailwind config from extending app.
I'm building a monorepo with a UI layer consisting of mainly Shadcn-Vue components, that I'm extending in multiple apps in the monorepo. I want each app to be able to override the layer's default tailwind config if necessary. For now the issue I'm facing is that the styles from my layer are not referenced correctly in the app.
My layer's
and my app's
With this setup, when running the app's dev server, I can see both a
My layer's
nuxt.config.tsand my app's
nuxt.config.tsWith this setup, when running the app's dev server, I can see both a
main.css and a tailwind.css file being served in my devtool, but no style is applied to the component.