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章】RailsチュートリアルでBootstrapが導入できない時の解決方法

Last updated at Posted at 2019-10-27

Railsチュートリアルの5章でBootstrapがどうしても導入できず、
色々やった結果解決できたので、対処法をご紹介します。

(エラー: bootstrap-sprocketsのimportに失敗と書いてある)
スクリーンショット 2019-10-27 14.44.27.png

以下、解決方法を載せます。

  1. Gemfileの記載を確認し、再度bundle installを実行

    Gemfile
    source 'https://rubygems.org'
    
    gem 'rails',          '5.1.6'
    gem 'bootstrap-sass', '3.3.7'
     .
     .
     .
    

2. **bootstrapが正確にimportされているか確認**
```css:app/assets/stylesheets/custom.scss

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

<br>
3. **rails serverを再起動**
<br>
4. **Cloud9を再起動**
<br>
5. **GemfileとApplication.jsを変更**(僕はこれで解決しました!)

    ```gem:Gemfile
# 以下を追加
gem 'autoprefixer-rails'
```Javascript:app/assets/javascripts/application.js

// 以下を追加
//= require bootstrap-sprockets


    忘れずに、**bundle install**を実行!
<br>
6. **custom.scssをcustom.sassに名称変更**

あまりオススメはしませんが、どうしても解決しない場合は
scssファイルをsassファイルに変更することで解決することがあります。

<br>

(*正常にbootstrapが導入できると下のような画面になります*)
<img width="1440" alt="スクリーンショット 2019-10-27 14.54.58.png" src="https://qiita-image-store.s3.ap-northeast-1.amazonaws.com/0/520738/d47b60ac-9975-21f4-8c6f-8cc7e649cdcb.png">

<br>
以上、参考になれば幸いです!

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?