From 2d62fd754fa3046eee3c0f9c71958d49d3d33860 Mon Sep 17 00:00:00 2001 From: Eugene Burmakin Date: Tue, 12 Nov 2024 16:00:38 +0100 Subject: [PATCH] Remove the `bin/rails tailwindcss:watch` command from the Procfile.dev file --- CHANGELOG.md | 1 + Procfile.dev | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0b05d131..fb376de2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ### Changed - Admins can now provide custom password for new users and update passwords for existing users on the Users page. +- The `bin/dev` file will no longer run `bin/rails tailwindcss:watch` command. It's useful only for development and doesn't really make sense to run it in production. ### Fixed diff --git a/Procfile.dev b/Procfile.dev index 66c45582..e6096674 100644 --- a/Procfile.dev +++ b/Procfile.dev @@ -1,2 +1 @@ web: bin/rails server -p 3000 -b 0.0.0.0 -css: bin/rails tailwindcss:watch