mirror of
https://github.com/koodiklinikka/koodiklinikka.fi.git
synced 2026-01-26 11:23:58 +00:00
6 lines
146 B
TypeScript
6 lines
146 B
TypeScript
const host = process.env.SERVER || "https://koodiklinikka-api.herokuapp.com/";
|
|
|
|
export default function getApiURL(path) {
|
|
return host + path;
|
|
}
|