Mick Lawitzke

Results 373 comments of Mick Lawitzke

This is my current solution to use Tailwind 4 programatically. I think it can be used for vue-email. **use-tailwind.ts** ```ts import { compile } from 'tailwindcss'; import tailwindStyles from 'tailwindcss/index.css?raw';...

I think/assume upcoming version of Nuxt Studio brings branch support (including PRs etc) as well as selfhosting possibility. If you need to access now you can ask in Discord, for...

In your feature request you used file paths, e.g. '/other'. But in the world of nuxt i18n you would use route names instead that get generated by Nuxt and can...

Thanks! To give you feedback for the docs: I simply couldnt find this information. I searched for scroll, body, overflow, lock, etc Also what I noticed is that the one...

Personally I "just" want to use Tailwind in my Nuxt project. Since v4 has first class Vite support, I question if a Nuxt module is still needed or what benefits...

I tried Nuxt UI 3 with Tailwind 4 a lot already. As far as I see they dont use Nuxt/Tailwind. Works like a charm. EDIT: Also tried on a blank...

> You can try this out for the time being: https://github.com/pi0/nuxt-tailwindcss4 No need for any module as I wrote above!

No need for scss when using Tailwind. Apply classes like this: ```css h1 { @apply font-bold; @apply text-2xl; }

If you use the powers of Tailwind you dont need any scss ever again

What exactly? I think the whole purpose of Tailwind is not to write css or scss again.