rebar3_tailwind ===== A rebar plugin Build ----- $ rebar3 compile Use --- Follow the tailwind [docs](https://tailwindcss.com/docs/installation) to setup tailwind for your project. Add the plugin to your rebar config: {plugins, [ {rebar3_tailwind, {git, "https://host/user/rebar3_tailwind.git", {branch, "main"}}} ]}. Set options: {tailwind_opts, [{input, "./apps/hello_world/priv/input.css"}, {output, "./_build/default/lib/hello_world/priv/static/assets/output.css"}]}. Set the compile provider hook: {provider_hooks, [ {post, [{compile, {tailwind, compile}}]} ]}. It is recommended to set it as post, not pre. The logic being, we don't care what our website looks like if the erlang application can't even compile. Then simply compile your project and your compiled css will be at the output path: $ rebar3 compile