From 48bab162451f016d23471457b418fac2d5dd3efc Mon Sep 17 00:00:00 2001 From: "Md. Shahriar Parvez" Date: Sun, 19 Apr 2026 08:54:40 +0600 Subject: [PATCH] Update font source path in documentation for Local Font Simple mistakes, lost couple of hours. It mentioned `/app/font` folder as an example and relative path, but wrong example not including `font/` path --- docs/01-app/01-getting-started/13-fonts.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/01-app/01-getting-started/13-fonts.mdx b/docs/01-app/01-getting-started/13-fonts.mdx index bc6a37f037fa..6eeb88829e07 100644 --- a/docs/01-app/01-getting-started/13-fonts.mdx +++ b/docs/01-app/01-getting-started/13-fonts.mdx @@ -267,7 +267,7 @@ To use a local font, import the `localFont` function from `next/font/local` and import localFont from 'next/font/local' const myFont = localFont({ - src: './my-font.woff2', + src: './font/my-font.woff2', }) export default function RootLayout({