kevinlang / phx_gen_tailwind

Mix task to add Tailwind CSS to a new Phoenix 1.6+ project

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PhxGenTailwind

Adds Tailwind to your new Phoenix 1.6+ project

Installation

First, install it in your mix.exs file. If you have an umbrella setup, you should be installing it in your Phoenix app ({name}_web).

def deps do
  [
    {:phx_gen_tailwind, "~> 0.1.3", only: :dev}
  ]
end

Once installed, simply run mix phx.gen.tailwind from the root of your project. If you are in an umbrella setup, it should be run from the root of your web app.

$ mix phx.gen.tailwind
* creating assets/package.json
* creating assets/tailwind.config.js
* injecting assets/css/app.css
* injecting config/dev.exs
* injecting mix.exs
* injecting assets/js/app.js

NPM install new dependencies? [Yn] 
* running cd assets/ && npm install

About

Mix task to add Tailwind CSS to a new Phoenix 1.6+ project

License:Apache License 2.0


Languages

Language:Elixir 98.9%Language:JavaScript 1.1%