Next.js 如何使用本地自定义字体

本地字体

使用本地字体文件十分简单,只需要指定好字体文件的加载路径,然后通过 className 设置给需要自定义字体的元素即可。

app/layout.tsx

import localFont from 'next/font/local'
 
// Font files can be colocated inside of `app`
const myFont = localFont({
  src: './my-font.woff2',
})
 
export default function RootLayout({
  children,
}: {
  children: React.ReactNode
}) {
  return (
    <html lang="en" className={myFont.className}>
      <body>{children}</body>
    </html>
  )
}

结合 Tailwind CSS

首先加载自定义字体文件,并且通过 variable 属性指定 CSS variable

app/layout.tsx

export const myFont = localFont({
  src: './my-font.woff2',
  variable: '--font-my',
});

export default function RootLayout({
  children,
}: {
  children: React.ReactNode;
}) {
  return (
    <html
      lang="en"
      className={cn(
        myFont.variable,
      )}
    >
      <body>
       {children}
      </body>
    </html>
  );
}

然后在 Tailwind 配置中配置扩展自定义字体

tailwind.config.js

/** @type {import('tailwindcss').Config} */
module.exports = {
  theme: {
    extend: {
      fontFamily: {
        my: ['var(--font-my)'],
      },
    },
  },
}

在需要使用该自定义字体的地方都可以通过 className="font-my" 使用

参考链接

原文链接:https://juejin.cn/post/7349410786815361058 作者:OXXD

(0)
上一篇 2024年3月24日 下午4:38
下一篇 2024年3月24日 下午4:48

相关推荐

发表回复

登录后才能评论