aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web/app/layout.tsx
diff options
context:
space:
mode:
authorKohei Watanabe <nebel@fogtype.com>2024-07-06 08:48:57 +0900
committerGitHub <noreply@github.com>2024-07-06 00:48:57 +0100
commit72f03b209340b3f838eab8fd8de987d598d2691e (patch)
tree3d1cc79f034ff626de3649923df03d2a5b0f6190 /apps/web/app/layout.tsx
parent5e9b04a6e390528451246e6fdae874ffb2451231 (diff)
downloadkarakeep-72f03b209340b3f838eab8fd8de987d598d2691e.tar.zst
fix(web): Add sans-serif fallback for Inter font in CJK environments (#272)
Diffstat (limited to '')
-rw-r--r--apps/web/app/layout.tsx5
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/web/app/layout.tsx b/apps/web/app/layout.tsx
index 1beb4b5c..6d8b10ed 100644
--- a/apps/web/app/layout.tsx
+++ b/apps/web/app/layout.tsx
@@ -18,7 +18,10 @@ import { ReactQueryDevtools } from "@tanstack/react-query-devtools";
import { clientConfig } from "@hoarder/shared/config";
-const inter = Inter({ subsets: ["latin"] });
+const inter = Inter({
+ subsets: ["latin"],
+ fallback: ["sans-serif"],
+});
export const metadata: Metadata = {
title: "Hoarder",