mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-09-17 16:51:57 +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();
|