Skip to content

Latest commit

 

History

History
185 lines (132 loc) · 5.64 KB

font-optimization.md

File metadata and controls

185 lines (132 loc) · 5.64 KB
description
Optimizing loading web fonts with the built-in `@next/font` loaders.

Optimizing Fonts

@next/font will automatically optimize your fonts (including custom fonts) and remove external network requests for improved privacy and performance.

Overview

@next/font includes built-in automatic self-hosting for any font file. This means you can optimally load web fonts with zero layout shift, thanks to the underlying CSS size-adjust property used.

This new font system also allows you to conveniently use all Google Fonts with performance and privacy in mind. CSS and font files are downloaded at build time and self-hosted with the rest of your static assets. No requests are sent to Google by the browser.

Usage

To get started, install @next/font:

npm install @next/font

Google Fonts

Automatically self-host any Google Font. Fonts are included in the deployment and served from the same domain as your deployment. No requests are sent to Google by the browser.

Import the font you would like to use from @next/font/google as a function. We recommend using variable fonts for the best performance and flexibility.

To use the font in all your pages, add it to _app.js or _app.tsx under /pages as shown below:

import { Inter } from '@next/font/google';

// If loading a variable font, you don't need to specify the font weight
const inter = Inter()

export default function MyApp({ Component, pageProps }) {
  return (
    <main className={inter.className}>
      <Component {...pageProps} />
    </main>
  )
}

If you can't use a variable font, you will need to specify a weight:

import { Roboto } from '@next/font/google';

const roboto = Roboto({
  weight: '400',
})

export default function MyApp({ Component, pageProps }) {
  return (
    <main className={roboto.className}>
      <Component {...pageProps} />
    </main>
  )
}

Apply the font in <head>

You can also use the font without a wrapper and className by injecting it inside the <head> as follows:

import { Inter } from '@next/font/google';

const inter = Inter();

export default function MyApp({ Component, pageProps }) {
  return (
    <>
      <style jsx global>{`
        html {
          font-family: ${inter.style.fontFamily};
        }
      `}</style>
      <Component {...pageProps} />
    </>
  )
}

Single page usage

To use the font on a single page, add it to the specific page as shown below:

import { Inter } from '@next/font/google';

const inter = Inter();

export default function Home() {
  return (
    <div className={inter.className}>
      <p>Hello World</p>
    </div>
  );
}

Specifying a subset

Google Fonts are automatically subset. This reduces the size of the font file and improves performance. You'll need to define which of these subsets you want to preload. Failing to specify any subsets while preload is true will result in a warning.

This can be done in 2 ways:

  • On a font per font basis by adding it to the function call

    const inter = Inter({ subsets: ["latin"] });
  • Globally for all your fonts in your next.config.js

    // next.config.js
    module.exports = {
      experimental: {
        fontLoaders: [
          { loader: '@next/font/google', options: { subsets: ['latin'] } },
        ],
      },
    }
    • If both are configured, the subset in the function call is used.

View the Font API Reference for more information.

Local Fonts

Import @next/font/local and specify the src of your local font file. We recommend using variable fonts for the best performance and flexibility.

import localFont from '@next/font/local';

// Font files can be colocated inside of `pages`
const myFont = localFont({ src: './my-font.woff2' });

export default function MyApp({ Component, pageProps }) {
  return (
    <main className={myFont.className}>
      <Component {...pageProps} />
    </main>
  )
}

View the Font API Reference for more information.

Preloading

When a font function is called on a page of your site, it is not globally available and preloaded on all routes. Rather, the font is only preloaded on the related route/s based on the type of file where it is used:

  • if it's a unique page, it is preloaded on the unique route for that page
  • if it's in the custom App, it is preloaded on all the routes of the site under /pages

Reusing fonts

Every time you call the localFont or Google font function, that font is hosted as one instance in your application. Therefore, if you load the same font function in multiple files, multiple instances of the same font are hosted. In this situation, it is recommended to do the following:

  • Call the font loader function in one shared file
  • Export it as a constant
  • Import the constant in each file where you would like to use this font

Next Steps

````