Get basebox host from env variable if present

This commit is contained in:
Felix Fischer 2023-04-27 15:42:08 +00:00
parent 9636416807
commit a9576219b9

View File

@ -13,7 +13,7 @@ export const store = reactive({
userName: "stranger",
/** base URL of basebox broker host */
baseboxHost: "http://127.0.0.1:8080",
baseboxHost: process.env.BASEBOX_HOST || "http://127.0.0.1:8080",
/** basebox session data */
session: {},