aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/app/routes/_index.tsx
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2024-08-10 22:55:17 +0900
committernsfisis <nsfisis@gmail.com>2024-08-10 22:55:17 +0900
commit8ce2834a5bd2bbe799f6fab969cc1d9da6bdb588 (patch)
tree3af529e1c4259d7cb8c5dbfa942de8e57bd75af1 /frontend/app/routes/_index.tsx
parenta8f2594e8dcb741fb942092cbc53d64cf93132ef (diff)
parent04ff82d35e9cbd3d2a86204260f58a370fda88da (diff)
downloadphperkaigi-2025-albatross-8ce2834a5bd2bbe799f6fab969cc1d9da6bdb588.tar.gz
phperkaigi-2025-albatross-8ce2834a5bd2bbe799f6fab969cc1d9da6bdb588.tar.zst
phperkaigi-2025-albatross-8ce2834a5bd2bbe799f6fab969cc1d9da6bdb588.zip
Merge branch 'feat/watch-page'
Diffstat (limited to 'frontend/app/routes/_index.tsx')
-rw-r--r--frontend/app/routes/_index.tsx4
1 files changed, 4 insertions, 0 deletions
diff --git a/frontend/app/routes/_index.tsx b/frontend/app/routes/_index.tsx
index 2fcf1f2..25b9c81 100644
--- a/frontend/app/routes/_index.tsx
+++ b/frontend/app/routes/_index.tsx
@@ -1,7 +1,11 @@
+import { config } from "@fortawesome/fontawesome-svg-core";
import type { LoaderFunctionArgs, MetaFunction } from "@remix-run/node";
import { Link } from "@remix-run/react";
+import "@fortawesome/fontawesome-svg-core/styles.css";
import { ensureUserNotLoggedIn } from "../.server/auth";
+config.autoAddCss = false;
+
export const meta: MetaFunction = () => [
{ title: "iOSDC Japan 2024 Albatross.swift" },
];