1. Local font
2
font.ts
import localFont from 'next/font/local';
export const familyMont = localFont({
src: [
{ path: './fonts/Montserrat-Bold.woff2', weight: '700', style: 'bold' },
{ path: './fonts/Montserrat-Medium.woff2', weight: '500', style: 'medium' },
{ path: './fonts/Montserrat-Regular.woff2', weight: '400', style: 'normal' }
],
display: 'swap',
variable: '--font-mont'
});3
4
마지막 업데이트
