LoginSignup
1
0

More than 3 years have passed since last update.

Rails Bootstrap導入

Posted at

Bootstrap導入

動作環境

ruby 2.5.1p57
Rails 5.2.4.4

Gem導入

gem 'bootstrap'
gem 'jquery-rails'
bundle install

application.cssをリネームする

mv app/assets/stylesheets/application.css app/assets/stylesheets/application.scss

application.scssで読み込む

@import "bootstrap-sprockets";
@import "bootstrap";

application.jsに追記

app/assets/javascripts/application.js
@import "bootstrap-sprockets";
@import "bootstrap";

サーバー立ち上げる

もともと立ち上げていた場合には、一旦おとして再起動させる

1
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
1
0