Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
February 15, 2021 07:06 pm GMT

The best way to load and use Google Fonts in Next.js Tailwind

I was setting up a new project today with Next.js and tailwindcss, and I had to use Roboto as a font.

Since it's a Google Font, I was looking into the best way to load a font from an external URL (since the fonts are available through a CDN, I don't bother hosting them myself).

The following article explains this very thoroughly: https://csswizardry.com/2020/05/the-fastest-google-fonts.

From this article you can derive the following snippet:

<link rel="preconnect"      href="https://fonts.gstatic.com"      crossorigin /><!-- [2] --><link rel="preload"      as="style"      href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" /><!-- [3] --><link rel="stylesheet"      href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap"      media="print" onload="this.media='all'" /><!-- [4] --><noscript>  <link rel="stylesheet"        href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" /></noscript>
Enter fullscreen mode Exit fullscreen mode

Also note how I only include the weights I'm going to be using (400 & 700) to reduce the size of the font we're loading.

So, how do we implement the above snippet into our Next.js application?
That's quite simple!
In your /pages folder, you should have a _document.js/.tsx file.
In this file, we can easily adapt the <head> section using the next/head module. This will be applied on every page by Next.js.

import Document, {  DocumentContext,  Html,  Head,  Main,  NextScript,} from 'next/document'class MyDocument extends Document {  static async getInitialProps(ctx: DocumentContext) {    const initialProps = await Document.getInitialProps(ctx)    return initialProps  }  render() {    return (      <Html>        <Head>          <link            rel="preconnect"            href="https://fonts.gstatic.com"            crossOrigin="true"          />          <link            rel="preload"            as="style"            href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap"          />          <link            rel="stylesheet"            href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap"            media="print"            onLoad="this.media='all'"          />          <noscript>            <link              rel="stylesheet"              href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap"            />          </noscript>        </Head>        <body>          <Main />          <NextScript />        </body>      </Html>    )  }}export default MyDocument
Enter fullscreen mode Exit fullscreen mode

Now the Next.js part is done. The font is being loaded, yay!
The next and final part is actually using the font in Tailwind, and applying it to all our sans-serif text (since Roboto is a sans-serif font).

This is super easy in Tailwind, this just requires an extension of the default theme:

const defaultTheme = require('tailwindcss/defaultTheme')module.exports = {  theme: {    extend: {      fontFamily: {        sans: ['Roboto', ...defaultTheme.fontFamily.sans],      },    },  },  variants: {    extend: {},  },  plugins: [],}
Enter fullscreen mode Exit fullscreen mode

I only needed to add the sans property of the fontFamily object to include the Roboto font, and add the other sans-serif fonts from the default theme as fallbacks.

There you have it! Optimized font loading in your Next.js application with Tailwind :-)
Enjoy.


Original Link: https://dev.to/thomasledoux1/the-best-way-to-use-google-fonts-in-next-js-tailwind-43a2

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To