remove old console.log

This commit is contained in:
2025-07-13 00:22:48 +02:00
parent 4d0765c53b
commit 18be642181

View File

@@ -1,5 +1,4 @@
export function getApiUrl(path: string): string { export function getApiUrl(path: string): string {
const API_BASE_URL = useRuntimeConfig().public.apiBase; const API_BASE_URL = useRuntimeConfig().public.apiBase;
console.log(API_BASE_URL);
return `${API_BASE_URL}/${path}`; return `${API_BASE_URL}/${path}`;
} }