From 60b4c8b54f785b0dbbfa2440b774a2d902080fd9 Mon Sep 17 00:00:00 2001 From: George Drummond <56931545+drummond-work@users.noreply.github.com> Date: Thu, 14 Jan 2021 10:25:42 -0500 Subject: [PATCH] Fix helper typo in readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1709885f..c615c7b3 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ This gem just gives access to the standard Tailwind CSS framework. If you need t 1. Run `./bin/bundle add tailwindcss-rails` 2. Run `./bin/rails tailwindcss:install` (on a fresh Rails application) -The last option adds the purger compressor to `config/environments/production.rb`. This ensures that when `assets:precompile` is called during deployment that the unused class names are not included in the tailwind output css used by the app. It also adds a `javascript_link_tag "tailwind"` to your `app/views/application.html.erb` file. +The last option adds the purger compressor to `config/environments/production.rb`. This ensures that when `assets:precompile` is called during deployment that the unused class names are not included in the tailwind output css used by the app. It also adds a `stylesheet_link_tag "tailwind"` to your `app/views/application.html.erb` file. You can do both things yourself, if you've changed the default setup.