fix: math

This commit is contained in:
2022-08-10 18:34:01 -04:00
parent 783fdd17dc
commit d356ed4dbf
3 changed files with 13 additions and 4 deletions

View File

@@ -3,5 +3,14 @@
* @param title The title string.
*/
export function useTitle(title: string) {
useHead({ title: `${title} | Eggworld` });
useHead({
title: `${title} | Eggworld`,
link: [
{ rel: "icon", type: "image/x-icon", href: "/favicon.ico" },
{
rel: "stylesheet",
href: "https://cdn.jsdelivr.net/npm/katex@0.16.0/dist/katex.min.css",
},
],
});
}