mirror of
https://github.com/rzmk/learnhouse.git
synced 2025-12-18 20:09:25 +00:00
6 lines
226 B
TypeScript
6 lines
226 B
TypeScript
const LEARNHOUSE_API_URL = "http://localhost:1338/api/";
|
|
const LEARNHOUSE_BACKEND_URL = "http://localhost:1338/";
|
|
|
|
export const getAPIUrl = () => LEARNHOUSE_API_URL;
|
|
|
|
export const getBackendUrl = () => LEARNHOUSE_BACKEND_URL;
|