diff options
| -rw-r--r-- | apps/web/app/layout.tsx | 5 |
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", |
