0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

5/16 本日の勉強記録 RoR Bootstrap

Last updated at Posted at 2019-05-16

今後よく使うことになるであろう、Bootstrapの導入の流れをまとめる。

Gemfileに

gem 'bootstrap', '~> 4.○.○'
gem 'jquery-rails', '~>4.○.○'

と記入し、bundle install

インストールできたら、
ターミナルでmv app/assets/stylesheet/application.css app/assetes/stylesheets/application.scss
でapplication.cssをapplication.scssに変更。

application.scss
@import "bootstrap";

と記入。

その後、

application.js
//= require jquery3
//= rwquire popper
//= require bootstrap-sprockets

を追加。

これでできた。
何か間違っているところがあれば、指摘していただけると幸いです。

そういえばキーボードの「o」だけなんか打ち込んだ時に違和感があるんですが、なんでだろう。ホコリとか入っちゃったのかな。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?