feat: fix return to home when dev.sh is used with source

This commit is contained in:
EmanueleAlfano
2026-02-04 15:11:16 +01:00
parent 4ba1fd5a85
commit 68d8245596

View File

@@ -147,7 +147,7 @@ export async function requestEntry(
*/ */
export async function checkServerHealth(): Promise<boolean> { export async function checkServerHealth(): Promise<boolean> {
try { try {
const response = await fetch(`${API_BASE_URL}/`); const response = await fetch(`${API_BASE_URL}/api/`);
return response.ok; return response.ok;
} catch { } catch {
return false; return false;