mirror of
https://github.com/zadam/trilium.git
synced 2025-12-31 19:54:25 +01:00
14 lines
285 B
TypeScript
14 lines
285 B
TypeScript
import config from "./config.js";
|
|
import utils from "./utils.js";
|
|
|
|
function getHost() {
|
|
const envHost = process.env.TRILIUM_HOST;
|
|
if (envHost && !utils.isElectron) {
|
|
return envHost;
|
|
}
|
|
|
|
return config['Network']['host'] || '0.0.0.0';
|
|
}
|
|
|
|
export default getHost();
|