chore: moving VITE_KC_API_BASE_URL to the helper function

This commit is contained in:
Kevin
2025-07-02 11:35:33 -05:00
parent 8f2a2391d1
commit fb8acbefe7
4 changed files with 9 additions and 12 deletions

View File

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