mirror of
https://github.com/zadam/trilium.git
synced 2024-11-11 18:08:13 +08:00
11 lines
No EOL
345 B
JavaScript
11 lines
No EOL
345 B
JavaScript
"use strict";
|
|
|
|
const config = require('./config');
|
|
|
|
module.exports = {
|
|
SYNC_SERVER: config['Sync']['syncServerHost'],
|
|
isSyncSetup: !!config['Sync']['syncServerHost'],
|
|
SYNC_TIMEOUT: config['Sync']['syncServerTimeout'] || 5000,
|
|
SYNC_PROXY: config['Sync']['syncProxy'],
|
|
SYNC_CERT_PATH: config['Sync']['syncServerCertificate']
|
|
}; |