From 92c1d828c499b360cb877f2e0e55096b011b2668 Mon Sep 17 00:00:00 2001 From: imnyang Date: Thu, 30 Jan 2025 23:48:42 +0900 Subject: [PATCH] Init --- app/root.tsx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) 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 }, ];