From 4ca412b6714d9c16ef486912869c06520b5bc20b Mon Sep 17 00:00:00 2001 From: hudy9x Date: Tue, 14 May 2024 23:18:41 +0700 Subject: [PATCH] fix: google font not loaded in ubuntu --- packages/ui-app/app/layout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/ui-app/app/layout.tsx b/packages/ui-app/app/layout.tsx index 8ec4ef4d..b9c60088 100644 --- a/packages/ui-app/app/layout.tsx +++ b/packages/ui-app/app/layout.tsx @@ -8,7 +8,7 @@ import { GoalieProvider } from '@goalie/nextjs' import Head from 'next/head' import dynamic from 'next/dynamic' -const inter = Inter({ subsets: ['latin'] }) +const inter = Inter({ subsets: ['latin'], display: 'swap' }) const PushNotification = dynamic( () => import('./_components/PushNotification'),