chore: improving the withBaseURL workflow

This commit is contained in:
Kevin
2025-07-02 11:33:23 -05:00
parent e2247669f0
commit 8f2a2391d1
4 changed files with 48 additions and 14 deletions

View File

@ -1,5 +1,5 @@
import { VITE_KC_API_BASE_URL } from '@src/env'
export default function withBaseUrl(path: string): string {
export function withAPIBaseURL (path: string) : string {
return VITE_KC_API_BASE_URL + path
}