diff options
Diffstat (limited to 'frontend/app/components/UserIcon.tsx')
| -rw-r--r-- | frontend/app/components/UserIcon.tsx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/frontend/app/components/UserIcon.tsx b/frontend/app/components/UserIcon.tsx index e14a571..8002c6f 100644 --- a/frontend/app/components/UserIcon.tsx +++ b/frontend/app/components/UserIcon.tsx @@ -1,3 +1,5 @@ +import { BASE_PATH } from "../config"; + type Props = { iconPath: string; displayName: string; @@ -9,8 +11,8 @@ export default function UserIcon({ iconPath, displayName, className }: Props) { <img src={ process.env.NODE_ENV === "development" - ? `http://localhost:8003/phperkaigi/2025/code-battle${iconPath}` - : `/phperkaigi/2025/code-battle${iconPath}` + ? `http://localhost:8003${BASE_PATH}${iconPath}` + : `${BASE_PATH}${iconPath}` } alt={`${displayName} のアイコン`} className={`rounded-full border-4 border-white ${className}`} |
