wm-AllKids-tibi2023/api/hooks/config-client.js

12 lines
239 B
JavaScript
Raw Normal View History

2023-09-17 13:24:39 +02:00
const release = "tibi-docs.dirty"
2023-12-06 18:57:25 +01:00
const apiClientBaseURL = "/api/"
2023-09-17 13:24:39 +02:00
// @ts-ignore
if (release && typeof context !== "undefined") {
context.response.header("X-Release", release)
}
module.exports = {
release,
2023-12-06 18:57:25 +01:00
apiClientBaseURL,
2023-09-17 13:24:39 +02:00
}