diff options
| author | nsfisis <nsfisis@gmail.com> | 2025-08-18 00:59:02 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2025-08-18 00:59:02 +0900 |
| commit | ce4b880fafa25ec04be23c678b47a4bf57cadd74 (patch) | |
| tree | 66009e1f8ec31979009b45f15c61f18bb5fe9a22 | |
| parent | eb97a4a5a0a2b5f2ae483808a6379873b93cdf9c (diff) | |
| download | iosdc-japan-2025-albatross-ce4b880fafa25ec04be23c678b47a4bf57cadd74.tar.gz iosdc-japan-2025-albatross-ce4b880fafa25ec04be23c678b47a4bf57cadd74.tar.zst iosdc-japan-2025-albatross-ce4b880fafa25ec04be23c678b47a4bf57cadd74.zip | |
fix(frontend): 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 7d08061..5ecab0a 100644 --- a/frontend/app/root.tsx +++ b/frontend/app/root.tsx @@ -9,7 +9,7 @@ import { BASE_PATH } from "./config"; config.autoAddCss = false; export const links: LinksFunction = () => [ - { rel: "icon", href: `${BASE_PATH}code-battle/favicon.svg` }, + { rel: "icon", href: `${BASE_PATH}favicon.svg` }, ]; export function Layout({ children }: { children: React.ReactNode }) { |
