program/next.js
[Next.js] @next/font/google 세팅
momoa210
2024. 1. 28. 21:47
npm install @next/font
로 설치 후
import { Noto_Sans_KR } from "@next/font/google";
import Head from "next/head";
const notoSansKR = Noto_Sans_KR({
weight: ["400", "700"],
subsets: [],
});
<Head>
<style>{`
html {
font-family: ${notoSansKR.style.fontFamily}, sans-serif;
}
`}</style>
</Head>