fix(og): add the missing SITE.website to loadGoogleFonts (#360)

This commit is contained in:
Xuân Nghĩa
2024-09-08 14:48:09 +07:00
committed by GitHub
parent 4e0e2195ac
commit 28f886b4d6
+3 -1
View File
@@ -89,7 +89,9 @@ export default async () => {
width: 1200, width: 1200,
height: 630, height: 630,
embedFont: true, embedFont: true,
fonts: (await loadGoogleFonts(SITE.title + SITE.desc)) as FontOptions[], fonts: (await loadGoogleFonts(
SITE.title + SITE.desc + SITE.website
)) as FontOptions[],
} }
); );
}; };