实现详情页

This commit is contained in:
yuchenglong
2026-01-13 09:26:13 +08:00
parent bb6c21496f
commit 9c16586994
13 changed files with 902 additions and 21 deletions

View File

@@ -1,9 +1,10 @@
export const API_CONFIG = {
BASE_URL: "http://192.168.1.66:8000", // Update this with your machine IP if running on device ex: http://192.168.1.5:8000
BASE_URL: "http://192.168.1.111:8000", // Update this with your machine IP if running on device ex: http://192.168.1.5:8000
TIMEOUT: 10000,
};
export const API_ENDPOINTS = {
SPORTS: "/v1/api/sports",
MATCHES_TODAY: "/v1/api/matches/today",
MATCH_DETAIL: (id: string) => `/v1/api/matches/${id}`,
};