# How to: Use Font Awesome 5 in your Sage theme

**URL:** https://discourse.roots.io/t/how-to-use-font-awesome-5-in-your-sage-theme/11737
**Category:** guides
**Tags:** sage9, guide
**Created:** 2018-02-26T17:26:52Z
**Posts:** 65
**Showing post:** 40 of 65

## Post 40 by @thewhipster — 2018-08-09T02:19:55Z

Perhaps handy for pseudo classers out there but 5.1 broke that for me and got it working again like this:

```
import { config, library, dom } from '@fortawesome/fontawesome-svg-core';
import { faUser } from '@fortawesome/pro-regular-svg-icons';

config.searchPseudoElements=true;

library.add(faUser);

dom.watch();
```

---

_[View the full topic](https://discourse.roots.io/t/how-to-use-font-awesome-5-in-your-sage-theme/11737)._
