跳至内容

字体优化

next/font 会自动优化您的字体(包括自定义字体)并移除外部网络请求,以提高隐私和性能。

🎥观看: 了解有关使用next/font的更多信息 → YouTube (6 分钟)

next/font 包括内置自动自托管功能,适用于任何字体文件。这意味着您可以以零布局偏移的方式优化加载网页字体,这要归功于使用的底层 CSS size-adjust 属性。

这个新的字体系统还允许您方便地使用所有 Google Fonts,同时兼顾性能和隐私。CSS 和字体文件在构建时下载并与其余静态资产一起自托管。浏览器不会向 Google 发送任何请求。

Google Fonts

自动自托管任何 Google 字体。字体包含在部署中,并从与您的部署相同的域提供服务。浏览器不会向 Google 发送任何请求。

next/font/google导入您想要使用的字体作为函数开始。我们建议使用可变字体以获得最佳性能和灵活性。

要在所有页面中使用字体,请将其添加到_app.js 文件(位于/pages下),如下所示

pages/_app.js
import { Inter } from 'next/font/google'
 
// If loading a variable font, you don't need to specify the font weight
const inter = Inter({ subsets: ['latin'] })
 
export default function MyApp({ Component, pageProps }) {
  return (
    <main className={inter.className}>
      <Component {...pageProps} />
    </main>
  )
}

如果您无法使用可变字体,则需要指定权重

pages/_app.js
import { Roboto } from 'next/font/google'
 
const roboto = Roboto({
  weight: '400',
  subsets: ['latin'],
})
 
export default function MyApp({ Component, pageProps }) {
  return (
    <main className={roboto.className}>
      <Component {...pageProps} />
    </main>
  )
}

您可以通过使用数组指定多个权重和/或样式

app/layout.js
const roboto = Roboto({
  weight: ['400', '700'],
  style: ['normal', 'italic'],
  subsets: ['latin'],
  display: 'swap',
})

值得注意的是:对于包含多个单词的字体名称,请使用下划线 (_) 。例如,Roboto Mono 应导入为 Roboto_Mono

<head>中应用字体

您也可以在不使用包装器和className的情况下通过以下方式将其注入<head>中来使用字体

pages/_app.js
import { Inter } from 'next/font/google'
 
const inter = Inter({ subsets: ['latin'] })
 
export default function MyApp({ Component, pageProps }) {
  return (
    <>
      <style jsx global>{`
        html {
          font-family: ${inter.style.fontFamily};
        }
      `}</style>
      <Component {...pageProps} />
    </>
  )
}

单页面用法

要在单个页面上使用字体,请将其添加到特定页面,如下所示

pages/index.js
import { Inter } from 'next/font/google'
 
const inter = Inter({ subsets: ['latin'] })
 
export default function Home() {
  return (
    <div className={inter.className}>
      <p>Hello World</p>
    </div>
  )
}

指定子集

Google Fonts 会自动子集。这会减小字体文件的大小并提高性能。您需要定义要预加载的这些子集中的哪些。如果在preloadtrue时未指定任何子集,则会发出警告。

这可以通过将其添加到函数调用中来完成

pages/_app.js
const inter = Inter({ subsets: ['latin'] })

查看字体 API 参考以获取更多信息。

使用多个字体

您可以在应用程序中导入和使用多个字体。您可以采用两种方法。

第一种方法是创建一个实用函数,用于导出字体、导入字体并在需要的地方应用其className。这确保了字体仅在渲染时才预加载。

app/fonts.ts
import { Inter, Roboto_Mono } from 'next/font/google'
 
export const inter = Inter({
  subsets: ['latin'],
  display: 'swap',
})
 
export const roboto_mono = Roboto_Mono({
  subsets: ['latin'],
  display: 'swap',
})

在上面的示例中,Inter 将全局应用,而 Roboto Mono 可以根据需要导入和应用。

或者,您可以创建一个CSS 变量,并将其与您首选的 CSS 解决方案一起使用。

app/global.css
html {
  font-family: var(--font-inter);
}
 
h1 {
  font-family: var(--font-roboto-mono);
}

在上面的示例中,Inter 将全局应用,任何 <h1> 标签都将使用 Roboto Mono 进行样式设置。

建议:谨慎使用多种字体,因为每种新字体都是客户端必须下载的额外资源。

本地字体

导入 next/font/local 并指定本地字体文件的src。我们建议使用可变字体以获得最佳性能和灵活性。

pages/_app.js
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>
  )
}

如果要为单个字体系列使用多个文件,则src可以是数组。

const roboto = localFont({
  src: [
    {
      path: './Roboto-Regular.woff2',
      weight: '400',
      style: 'normal',
    },
    {
      path: './Roboto-Italic.woff2',
      weight: '400',
      style: 'italic',
    },
    {
      path: './Roboto-Bold.woff2',
      weight: '700',
      style: 'normal',
    },
    {
      path: './Roboto-BoldItalic.woff2',
      weight: '700',
      style: 'italic',
    },
  ],
})

查看字体 API 参考以获取更多信息。

使用 Tailwind CSS

next/font 可以通过CSS 变量Tailwind CSS一起使用。

在下面的示例中,我们使用来自 next/font/google 的字体 Inter(您可以使用来自 Google 或本地字体的任何字体)。使用 variable 选项加载字体以定义您的 CSS 变量名称并将其分配给 inter。然后,使用 inter.variable 将 CSS 变量添加到您的 HTML 文档中。

pages/_app.js
import { Inter } from 'next/font/google'
 
const inter = Inter({
  subsets: ['latin'],
  variable: '--font-inter',
})
 
export default function MyApp({ Component, pageProps }) {
  return (
    <main className={`${inter.variable} font-sans`}>
      <Component {...pageProps} />
    </main>
  )
}

最后,将 CSS 变量添加到您的Tailwind CSS 配置中。

tailwind.config.js
/** @type {import('tailwindcss').Config} */
module.exports = {
  content: [
    './pages/**/*.{js,ts,jsx,tsx}',
    './components/**/*.{js,ts,jsx,tsx}',
    './app/**/*.{js,ts,jsx,tsx}',
  ],
  theme: {
    extend: {
      fontFamily: {
        sans: ['var(--font-inter)'],
        mono: ['var(--font-roboto-mono)'],
      },
    },
  },
  plugins: [],
}

现在,您可以使用 font-sansfont-mono 实用程序类将字体应用于您的元素。

预加载

当在您网站的页面上调用字体函数时,它不会在所有路由上全局可用和预加载。相反,字体仅根据其使用文件类型在相关路由上预加载。

  • 如果它是一个唯一页面,它将在该页面的唯一路由上预加载。
  • 如果它在自定义 App中,它将在/pages下网站的所有路由上预加载。

重用字体

每次调用localFont或 Google 字体函数时,该字体都会作为应用程序中的一个实例托管。因此,如果您在多个文件中加载相同的字体函数,则会托管相同字体的多个实例。在这种情况下,建议执行以下操作。

  • 在一个共享文件中调用字体加载器函数。
  • 将其导出为常量。
  • 在要使用此字体的每个文件中导入该常量。