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/dashboard.tsx | |
| parent | 948d7e6596bc4a37c8d7903e785e099b6a81a664 (diff) | |
| download | iosdc-japan-2025-albatross-bf3b2b2f5fdfe4d54226b59ce82378e4a77dc700.tar.gz iosdc-japan-2025-albatross-bf3b2b2f5fdfe4d54226b59ce82378e4a77dc700.tar.zst iosdc-japan-2025-albatross-bf3b2b2f5fdfe4d54226b59ce82378e4a77dc700.zip | |
feat(backend,frontend): Replace hard-coded base path with environment variable
Diffstat (limited to 'frontend/app/routes/dashboard.tsx')
| -rw-r--r-- | frontend/app/routes/dashboard.tsx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/frontend/app/routes/dashboard.tsx b/frontend/app/routes/dashboard.tsx index b7bfb01..75e809b 100644 --- a/frontend/app/routes/dashboard.tsx +++ b/frontend/app/routes/dashboard.tsx @@ -5,6 +5,7 @@ import { createApiClient } from "../api/client"; import BorderedContainerWithCaption from "../components/BorderedContainerWithCaption"; import NavigateLink from "../components/NavigateLink"; import UserIcon from "../components/UserIcon"; +import { BASE_PATH } from "../config"; export const meta: MetaFunction = () => [ { title: "Dashboard | PHPerKaigi 2025 Albatross" }, @@ -76,8 +77,8 @@ export default function Dashboard() { <a href={ process.env.NODE_ENV === "development" - ? "http://localhost:8003/phperkaigi/2025/code-battle/admin/dashboard" - : "/phperkaigi/2025/code-battle/admin/dashboard" + ? `http://localhost:8003${BASE_PATH}admin/dashboard` + : `${BASE_PATH}admin/dashboard` } className="text-lg text-white bg-sky-600 px-4 py-2 rounded-sm transition duration-300 hover:bg-sky-500 focus:ring-3 focus:ring-sky-400 focus:outline-hidden" > |
