Get images from the backend

This commit is contained in:
2026-01-05 22:26:38 +01:00
parent 8bf4d5bfca
commit d28af28759

View File

@@ -52,5 +52,5 @@ export async function fetchItemGroup(itemId: number): Promise<GroupInfo> {
}
export function getEveImageUrl(typeId: number, size: number = 32): string {
return `https://images.evetech.net/types/${typeId}/icon?size=${size}`;
return `${API_BASE}/images/${typeId}/${size}`;
}