6 lines
143 B
TypeScript
6 lines
143 B
TypeScript
import { VITE_KC_API_BASE_URL } from '@src/env'
|
|
|
|
export function withAPIBaseURL(path: string): string {
|
|
return VITE_KC_API_BASE_URL + path
|
|
}
|