2023-08-01 09:36:40 -05:00
|
|
|
import { VITE_KC_API_BASE_URL } from '../env'
|
|
|
|
|
2023-03-06 18:18:01 +11:00
|
|
|
export default function withBaseUrl(path: string): string {
|
2023-08-01 09:36:40 -05:00
|
|
|
return VITE_KC_API_BASE_URL + path
|
2023-03-06 18:18:01 +11:00
|
|
|
}
|