diff options
| author | nsfisis <nsfisis@gmail.com> | 2025-08-14 22:31:32 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2025-08-14 22:44:16 +0900 |
| commit | bf3b2b2f5fdfe4d54226b59ce82378e4a77dc700 (patch) | |
| tree | e8d6eaeab9ae28f1c66e530cbeed483db08a7098 /frontend/app/routes/_index.tsx | |
| parent | 948d7e6596bc4a37c8d7903e785e099b6a81a664 (diff) | |
| download | phperkaigi-2026-albatross-bf3b2b2f5fdfe4d54226b59ce82378e4a77dc700.tar.gz phperkaigi-2026-albatross-bf3b2b2f5fdfe4d54226b59ce82378e4a77dc700.tar.zst phperkaigi-2026-albatross-bf3b2b2f5fdfe4d54226b59ce82378e4a77dc700.zip | |
feat(backend,frontend): Replace hard-coded base path with environment variable
Diffstat (limited to 'frontend/app/routes/_index.tsx')
| -rw-r--r-- | frontend/app/routes/_index.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/frontend/app/routes/_index.tsx b/frontend/app/routes/_index.tsx index ef54c84..9767985 100644 --- a/frontend/app/routes/_index.tsx +++ b/frontend/app/routes/_index.tsx @@ -2,6 +2,7 @@ import type { LoaderFunctionArgs, MetaFunction } from "react-router"; import { ensureUserNotLoggedIn } from "../.server/auth"; import BorderedContainer from "../components/BorderedContainer"; import NavigateLink from "../components/NavigateLink"; +import { BASE_PATH } from "../config"; export const meta: MetaFunction = () => [ { title: "PHPerKaigi 2025 Albatross" }, @@ -16,7 +17,7 @@ export default function Index() { return ( <div className="min-h-screen bg-sky-600 flex flex-col items-center justify-center gap-y-6"> <img - src="/phperkaigi/2025/code-battle/logo.svg" + src={`${BASE_PATH}logo.svg`} alt="PHPerKaigi 2025" className="w-64 h-64" /> |
