diff --git a/app/root.tsx b/app/root.tsx index 742017a..2f634c5 100644 --- a/app/root.tsx +++ b/app/root.tsx @@ -11,15 +11,17 @@ import type { Route } from "./+types/root"; import stylesheet from "./app.css?url"; export const links: Route.LinksFunction = () => [ - { rel: "preconnect", href: "https://fonts.googleapis.com" }, + { rel: "preconnect", href: "https://cdnjs.cloudflare.com" }, { rel: "preconnect", - href: "https://fonts.gstatic.com", + href: "https://cdnjs.cloudflare.com", crossOrigin: "anonymous", }, { rel: "stylesheet", - href: "https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap", + href: "https://cdnjs.cloudflare.com/ajax/libs/pretendard/1.3.9/variable/pretendardvariable-dynamic-subset.min.css", + async: true, + crossorigin: "anonymous", }, { rel: "stylesheet", href: stylesheet }, ];