This commit is contained in:
암냥 2025-01-30 23:48:42 +09:00
commit 92c1d828c4

View file

@ -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 },
];