diff options
| author | nsfisis <nsfisis@gmail.com> | 2024-08-10 00:56:17 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2024-08-10 00:56:17 +0900 |
| commit | c04691e046910f0e419370472abcf0a3c615d6b7 (patch) | |
| tree | c694b162e9c33d9f805b3c473a9d042f27ac63b7 | |
| parent | 7bb74889f0c803c478f9dece40e65004bbd22456 (diff) | |
| download | iosdc-japan-2024-albatross-c04691e046910f0e419370472abcf0a3c615d6b7.tar.gz iosdc-japan-2024-albatross-c04691e046910f0e419370472abcf0a3c615d6b7.tar.zst iosdc-japan-2024-albatross-c04691e046910f0e419370472abcf0a3c615d6b7.zip | |
fix(frontend): fix favicon path
| -rw-r--r-- | frontend/app/root.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/app/root.tsx b/frontend/app/root.tsx index 57f1a10..054474a 100644 --- a/frontend/app/root.tsx +++ b/frontend/app/root.tsx @@ -9,7 +9,7 @@ import { import "./tailwind.css"; export const links: LinksFunction = () => [ - { rel: "icon", href: "/favicon.svg" }, + { rel: "icon", href: "/iosdc-japan/2024/code-battle/favicon.svg" }, ]; export function Layout({ children }: { children: React.ReactNode }) { |
