compiled successfully
4 Steps to Self-Hosted Fonts in Gatsby
October 17, 2019
I finally got around to setting up fonts for this site, but everywhere I looked were articles that overly complicated self-hosting fonts in Gatsby. Here’s the easy 4-step process I used for this blog.
- place your font files in
static/fonts/
. - create a
fonts.css
in the same directory and add your css font face rule(s). Mine looks like this:
@font-face {
font-family: "Lato";
src: url("Lato-Regular.otf");
}
@font-face {
font-family: "Dank Mono";
src: url("DankMono-Regular.otf");
}
- add
gatsby-plugin-web-font-loader
with either npm or yarn (don’t forget to--save
!). - add the plugin to your
gatsby-config.js
inside the plugins array. Here’s mine:
{
resolve: "gatsby-plugin-web-font-loader",
options: {
custom: {
families: ["Lato, Dank Mono"],
urls: ["/fonts/fonts.css"],
},
},
},
That’s it!