LoginSignup
0
1

More than 3 years have passed since last update.

【Rails】最短でRailsにFont-awesomeを導入する

Posted at

最短でRailsにFont-awesomeを導入する

1.Gemのインストール

gemfile
gem 'font-awesome-sass', '~> 5.12.0'
command
bundle install

2.scssでFont-awesomeを読み込む

application.scss
@import "font-awesome-sprockets";
@import "font-awesome";

5秒ですね!

参考:
https://github.com/FortAwesome/font-awesome-sass

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