I've just created a new rails app like this: rails new app_name --skip-sprockets
Then I ran the two commands:
./bin/bundle add tailwindcss-rails - worked fine
./bin/rails tailwindcss:install
This second command fails with:
NameError: uninitialized constant Tailwindcss::Engine::Sprockets
Since I'm planning on using Webpacker exclusively, I don't see the need for having to add Sprockets just to be able to use this gem. What do you think?