mirror of
https://github.com/koodiklinikka/koodiklinikka.fi.git
synced 2026-02-03 18:48:14 +00:00
6 lines
145 B
JavaScript
6 lines
145 B
JavaScript
const host = process.env.SERVER || "https://lit-plateau-4689.herokuapp.com/";
|
|
|
|
export default function getApiURL(path) {
|
|
return host + path;
|
|
}
|