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 3 years have passed since last update.

【Rails】Railsアプリでfont-awesome(5系)を使えるようにするには

Posted at

#Font-awesomeとは
Web上で無料で使えるアイコンを提供しているツール

#Font-awesomeをアプリに読み込む
gemでインストールする

fontawesome4系では「gem 'font-awesome-rails'」でインストールできていたが、fontawesome5系には対応していないとのこと。よって最新版を使用するために次のgemをGemfileに追加しましょう。

gem 'font-awesome-sass'

gemを追加したらbundle install

$ bundle install

その後はapp/assets/stylesheets/application.scssにfont-awesomeを引き込んでおきましょう。
今回はscssを使う場合を想定しています。

@import 'font-awesome-sprockets';
@import 'font-awesome';

これで5系に対応しているfontawesomeがアプリ内で使えるようになる。

#参考
font-awesome-sassについて/ピカワカ

gem 'font-awesome-rails'は最新版に対応してない... 代わりにfont-awesome-sassを使おう!

font-awesome-railsは5系をサポートしているのか?について

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?