guilhermesalviano / bloom-ui

0 stars 0 forks source link

Import tailwind pos build #6

Open guilhermesalviano opened 10 months ago

guilhermesalviano commented 10 months ago

Who is the correct way to publish my project with automatically tailwind builded css?

guilhermesalviano commented 10 months ago

The way I found is to import it from my dependent package is: @import '@koaris/bloom-ui/dist/tailwind.css';

guilhermesalviano commented 10 months ago

the files are duplicating my tailwind css. i had a idea and i gonna test, is remove tailwind from my next and just use from design system.

guilhermesalviano commented 9 months ago

Import tailwind from design system works fine, but I need do this importation in my css: @import '@koaris/bloom-ui/dist/tailwind.css';

And remove the tailwind directives, like: @tailwind base; @tailwind components; @tailwind utilities;

And I dont need the tailwind in my next project.

guilhermesalviano commented 9 months ago

I cant remove totally tailwind css from my next project. I still keep the @tailwind utilities; to my pages dont broke.