LoginSignup
0
0

More than 1 year has passed since last update.

railsにbootstrap導入

Posted at

1.gemに記入
gem 'bootstrap', '~> 4.1.1'
gem 'jquery-rails','~>4.3.1'

2.ターミナルでコマンド入力
bundle install

3.ターミナルでコマンド入力(cssをscssに変更)
mv app/assets/stylesheets/application.css app/assets/stylesheets/application.scss

4.application.scssの中に下記を記入
@import "bootstrap";

5.assets/javascripts/application.jsの中の
//= require_treeの前に下記記入

//= require jquery3
//= require popper
//= require bootstrap-sprockets

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0