Problem
If you are using FontAwesome in your project, you may face to this problem: FontAwesome icons being huge on page load
Solution
- Turn off autoAddCss
js
import { config } from '@fortawesome/fontawesome-svg-core'
config.autoAddCss = false- Load in CSS directly in your SCSS file:
js
@import 'node_modules/@fortawesome/fontawesome-svg-core/styles'You can apply this solution if your project is using Javascript framework such as React, Vue, etc...
I hope this solution can help you! Thanks for reading!



