[agent-pipeline] pipe-20260327053504-cc40 round-4

This commit is contained in:
DDD1542
2026-03-27 19:09:19 +09:00
parent 2e94a2b8e8
commit 8f1bc02bdf
20 changed files with 1195 additions and 106 deletions
+3 -3
View File
@@ -28,11 +28,11 @@ const getApiBaseUrl = (): string => {
(currentHost === "localhost" || currentHost === "127.0.0.1") &&
(currentPort === "9771" || currentPort === "3000")
) {
return "http://localhost:8080/api";
return "http://localhost:8081/api";
}
}
return "http://localhost:8080/api";
return "http://localhost:8081/api";
};
export const API_BASE_URL = getApiBaseUrl();
@@ -54,7 +54,7 @@ export const getFullImageUrl = (imagePath: string): string => {
}
if (currentHost === "localhost" || currentHost === "127.0.0.1") {
return `http://localhost:8080${imagePath}`;
return `http://localhost:8081${imagePath}`;
}
}