-
Hi guys! I am trying to set up a project with with Blazor Server (Dotnet 9) and Tailwindcss 4. I am using the Standalone CLI (I do not use NPM). Looks like tailwind does not scan the .razor files. Is there a way to tell tailwind to scan those files? With tailwind 3 I always used the tailwind.config.js. Thanks in advance :D |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 12 replies
-
Hi there! To set up a project with Blazor Server (Dotnet 9) and Tailwind CSS 4 using the Standalone CLI, you need to create a |
Beta Was this translation helpful? Give feedback.
-
...so could anyone please explain the steps starting from scratch, to include tailwind v4 in a blazor application? |
Beta Was this translation helpful? Give feedback.
-
Wow, wonderful! :-) Really thank you. Although I also read that the tailwind.config.js is now deprecated... this is more or less what I already did with versions 3.x, but I think that with version 4 things are changed... |
Beta Was this translation helpful? Give feedback.
-
Meanwhile, I followed this tutorial: https://www.billtalkstoomuch.com/2025/02/12/installing-tailwind-css-v4-in-a-blazor-webapp/ |
Beta Was this translation helpful? Give feedback.
-
I wrote an improved guide to setting up TailwindCSS and DaisyUI with an ASP.NET Core 9 Razor pages project using all of the guides and information I found here and on blogs: https://gist.github.com/lukewilson2002/e1f57a2f943705612f178e71abc46bfc @ABIOLI-COM posted a link to a blog that was very helpful in discovering a simpler method. Combined with DaisyUI docs and my own experience, I simplified it a bit. |
Beta Was this translation helpful? Give feedback.
I think I just figured it out!
The `config` statement needs to come before the `import` one. It looks like the documentation might be incorrect, since it shows it the other way around...
UPDATE:
This issue seems to be caused by incorrect file encoding and can be fixed by changing the encoding to
Unicode (UTF-8 without signature) - Codepage 65001
. See #15662 for more details.