You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
which builds me a Docker image. I build with that platform argument, because I am on an M2 MacBook and want to run the Docker image on a Ubuntu server.
I launch an interactive shell with:
$ docker run -it --rm thisandthat bash
and look at the compiled Tailwind CSS for the class max-h-8:
$ cat public/assets/tailwind-* | grep "max-h-8"
This comes up empty! 🚫
If I do the same with another class, say z-auto, or even max-h-[8px] it works flawlessly.
What am I missing?
The text was updated successfully, but these errors were encountered:
I have a brand new Rails (8.0.2) project with Ruby 3.4.2:
I add a
div
with a class ofmax-h-8
to thelayout/application.html.erb
file.If I now run
tailwindcss
binary, I get:This works. So it shows in my local development just fine.
I now want to deploy my project with a Docker image. I run:
which builds me a Docker image. I build with that platform argument, because I am on an M2 MacBook and want to run the Docker image on a Ubuntu server.
I launch an interactive shell with:
and look at the compiled Tailwind CSS for the class
max-h-8
:This comes up empty! 🚫
If I do the same with another class, say
z-auto
, or evenmax-h-[8px]
it works flawlessly.What am I missing?
The text was updated successfully, but these errors were encountered: