Ruby on railsにtailwindcssを導入時につまづいたので
解決方法を残します。
基本は公式docでOKです。
https://tailwindcss.com/docs/guides/ruby-on-rails
しかし、"./bin/dev"でエラーが出てしましました。
エラー
% ./bin/dev
WARN: Unresolved or ambiguous specs during Gem::Specification.reset:
stringio (>= 0)
Available/installed versions of this gem:
- 3.1.2
- 3.0.4
WARN: Clearing out unresolved specs. Try 'gem cleanup <gem>'
Please report a bug if this causes problems.
bin/dev: line 16: exec: foreman: not found
解決
下記を実行で治りまし。
gem cleanup stringio
gem install foreman