LoginSignup
2
0

More than 1 year has passed since last update.

【Ruby on Rails】WebpackerでFontAwesomeを導入方法

Last updated at Posted at 2020-03-25

Gemのインストール

必須ではないですが、Viewでiconメソッドを使うならば、Gemをインストールする必要です。

Gemfile
gem "font-awesome-sass"

FontAwesomeの導入

yarn add @fortawesome/fontawesome-free
app/javascript/packs/application.js
import "@fortawesome/fontawesome-free/js/all"
app/javascripts/src/application.scss
@import "@fortawesome/fontawesome-free/scss/fontawesome";

>>> FontAwesome free icons

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