achenet
Hello,
I’m trying to build a basic Phoenix web-app, and I’d like to use Tailwind.
However, when I launch mix phx.server, I get an error:
** (RuntimeError) The tailwind binary couldn’t be found at: https://github.com/tailwindlabs/tailwindcss/releases/download/v4.1.12/tailwindcss-freebsd-x64
sure enough, the Tailwind Releases Page has no release for FreeBSD-x64.
How can I solve this? Is there a way to get a working Tailwind binary (building it from source maybe?) and tell Phoenix to use that instead?
Trending in Questions
Hello!
Suppose you are building workflow (order / task / payment) processing system with the following requirements:
Each workflow con...
New
Hey guys,
I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly
Do you guys have any suggestions what is the best prac...
New
Hello!
Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app.
I creat...
New
I have what I’ve heard referred to as a “lookup table” in my database. This is a way of assigning codes to common values. One common lo...
New
Hello,
I’m developing a online persistent chat system (what’s app) like using elixir/dynamodb/aws for a mobile app(flutter).
The diffic...
New
What approach to take when sending live updates to “random” users Hi! I have a question, I have a little chat app, and when I create a DM...
New
I think I’ve found a small improvement I could contribute to <%= web_namespace %>.CoreComponents (installer/templates/phx_web/compo...
New
Other Trending Topics
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
There are three potential reasons for members of this forum to have a look at https://vutuv.de
You are tired or annoyed of LinkedIn.
Yo...
New
ICal is a library for interacting with iCalendar data. It parses iCalendars into typed Elixir structs via ICal.from_ics, and can prepare ...
New
Latest Phoenix Threads
Latest on Elixir Forum
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #ai
- #phoenix_html
- #elixirconf-us
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming











Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
Schultzer
IMO the best path would be to kick out tailwind and just ship with modern CSS with AI today there is no excuses left for having to pull in a framework that is not portable. Not sure if tailwind’s goal is even to be portable everywhere.
garrison
The tailwind standalone CLI is built with Bun, and it doesn’t look like they support FreeBSD at this time.
If you want to use Tailwind you should be able to install Node and use it the “normal way”. I would guess the PostCSS path would be the easiest?
I’m a little shocked at how fragmented their installation instructions have become. Stuff like this is why I have sworn off JS dependencies entirely.
garrison
Out of the frying pan and into the volcano lol
Schultzer
Yeah, and it could be excellent promo for tidewave too.
ostap
UnoCSS can be a drop-in replacement for Tailwind 4/3 and should work on FreeBSD if you install Node.js. They have a CLI:
ostap
Nevermind, just realised the original Tailwind CLI has a Node.js-powered version too.
krasenyp
Ugh, I stumbled upon the same problem and knowing how much I dislike Tailwind, I might just remove it, like @Schultzer said, and continue clean.
achenet
Thanks for the replies
I did actually try just making a project without Tailwind, but for my specific use case, having Tailwind does make things easier - basically I’m trying to build a simple todo app that has a sync-engine, so that I can turn off the server, make some changes on one or more of the clients, boot up the server again, and have everything sync. When I make a Phoenix + LiveView without Tailwind, the “new” and “edit” functions are seperate pages, while with Tailwind (which works on Linux), they are all on the same page.
Still, I think in the future just spending a bit of time tweaking the LiveView templates to be what I want may prove a better option than yet another big dependency.
Nevertheless, I tried using Node.js to get Tailwind working:
First I did
npm install tailwindcss @tailwindcss/cli, then updatedconfig/config.exsandconfig/dev.exsto use the new NPM binary.And then I ran into a bug where
daisyuidoesn’t really work with Tailwind v4…I think just modifying the templates to make the New and Edit functions all on one page will be easier in the long run than wading through this dependency quagmire.
Thanks everyone ^^
ostap
You could’ve gone for the third version of the CLI, which is meant for Tailwind 3:
From the Tailwind 3 docs: Installation - Tailwind CSS
adamwight
This just became a problem again for me, too. I was already relying on an unofficial build maintained by a kind individual:
Then, after upgrading to FreeBSD-15.0 I get an error when running this binary:
The failure mode is particularly bad, with infinite restarts silently using 100% CPU.
FreeBSD includes a package for tailwindcss3 (v3.4.17) but and the Elixir glue library can be configured to use a system or custom build:
I run into some trouble with a missing dependency however, I’ll report here once I understand why this is happening: