diff options
| author | nsfisis <nsfisis@gmail.com> | 2024-08-10 21:58:13 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2024-08-10 22:55:06 +0900 |
| commit | 04ff82d35e9cbd3d2a86204260f58a370fda88da (patch) | |
| tree | 3af529e1c4259d7cb8c5dbfa942de8e57bd75af1 /frontend/app/routes/_index.tsx | |
| parent | b4ab693aa438f3f1a335369568aabe7849fc1370 (diff) | |
| download | iosdc-japan-2024-albatross-04ff82d35e9cbd3d2a86204260f58a370fda88da.tar.gz iosdc-japan-2024-albatross-04ff82d35e9cbd3d2a86204260f58a370fda88da.tar.zst iosdc-japan-2024-albatross-04ff82d35e9cbd3d2a86204260f58a370fda88da.zip | |
feat(frontend): show status indicator icon
Diffstat (limited to 'frontend/app/routes/_index.tsx')
| -rw-r--r-- | frontend/app/routes/_index.tsx | 4 |
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" }, ]; |
