mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-08-22 03:42:30 +08:00
13 lines
288 B
TypeScript
13 lines
288 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(); |