mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-08-12 20:02:28 +08:00
14 lines
288 B
TypeScript
14 lines
288 B
TypeScript
import config from "./config.js";
|
|
import { isElectron } from "./utils.js";
|
|
|
|
function getHost() {
|
|
const envHost = process.env.TRILIUM_HOST;
|
|
if (envHost && !isElectron) {
|
|
return envHost;
|
|
}
|
|
|
|
return config["Network"]["host"] || "0.0.0.0";
|
|
}
|
|
|
|
export default getHost();
|