##はじめに
本記事は2021年9月時点の最新環境である、Rails6 に BootStrap5を導入する方法を紹介しています。
また、BootStrapに関してはsassで編集できるようにしています。
##gemfile
まずは、gemfileに以下の行を追加しましょう
gemfile
gem 'bootstrap', '~> 5.0.0.alpha1'
gem 'jquery-rails'
ターミナル(コマンドプロンプト)にて
ターミナル
bundle install
を実行しましょう。
##application.cssを変更
app/stylesheets/
の中にある
application.css
をapplication.scss
にファイルをリネームしましょう。
それができたら、application.scss
に以下の文を追加して下さい。
app/stylesheets/application.scss
@import "bootstrap-sprockets";
@import "bootstrap";
以上でBootstrapの導入が完了しました。