Currently, I am working with the latest version of Next.js (13.4) and I would like to incorporate a single Icon into my project using Font Awesome CDN to avoid increasing the overall app size.
However, when I include the following code snippet in my layout.js file:
<head><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/brands.min.css" /></head>
I encounter a re-hydration error. How can I resolve this issue? Do I need to install it instead?