gatsby-plugin-fontawesome
Disables Font Awesome auto CSS insertion and instead inserts it at compile time.
Why
Go to this Gatsby example site with Font Awesome icons. On the initial load, the page will jump. This is more clear if you disable JavaScript and reload the page. The problem is that Font Awesome inserts its styles in the frontend.
Install
First, follow Font Awesome docs to add it to your app.
Second, install the plugin:
yarn add gatsby-plugin-fontawesome
or
npm install --save gatsby-plugin-fontawesome
How to use
// In your gatsby-config.js
module.exports = {
plugins: [`gatsby-plugin-fontawesome`],
}
Based on
I needed support with Gatsby 5.8.1 so I have to publish a new version with few changes.
This is the original code, I’m very grateful to allow me contribute or maintain this code. https://github.com/jzabala/gatsby-plugin-fontawesome-css