install yarn
yarnが入ってなければインストールする
参考サイト
install bootstrap and jquery
$ yarn add jquery
$ yarn add bootstrap
application.js
//= require jquery/dist/jquery.js
//= require bootstrap/dist/js/bootstrap.js
application.css
*= require bootstrap/dist/css/bootstrap
参考
その他の方法
Rails 7だと –css bootstrapでできるらしいがエラーが出てうまくできなかった。
gemでもインストールできるが、自分で書いたcssが効かなくなったりしてcssの読み込みの順番がよくわからなかった。
Comments