We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b614ca commit d41ce7cCopy full SHA for d41ce7c
src/fonts/notoSansKR.ts src/app/_fonts/notoSansKR.tssrc/fonts/notoSansKR.ts renamed to src/app/_fonts/notoSansKR.ts
@@ -1,8 +1,13 @@
1
import { Noto_Sans_KR } from 'next/font/google'
2
3
export const notoSansKR = Noto_Sans_KR({
4
+ adjustFontFallback: true,
5
+ display: 'swap',
6
+ subsets: [
7
+ 'latin',
8
+ ],
9
weight: [
- '400',
- '700',
10
+ '300',
11
+ '600',
12
],
13
})
src/lib/utils.ts src/app/_lib/utils.tssrc/lib/utils.ts renamed to src/app/_lib/utils.ts
src/app/layout.tsx
@@ -1,6 +1,6 @@
import type { Metadata } from 'next'
-import { notoSansKR } from '@/fonts/notoSansKR'
+import { notoSansKR } from './_fonts/notoSansKR'
import './globals.css'
0 commit comments