2021-11-30 14:26:40 +00:00
|
|
|
// declare const POINT_URL: string;
|
|
|
|
// declare const EDGE_URL: string;
|
2022-09-08 10:03:12 +00:00
|
|
|
declare const APP_URL: string;
|
2024-03-16 16:03:46 +00:00
|
|
|
declare const VUE_API: string;
|
2022-01-21 13:02:28 +00:00
|
|
|
declare const SOLR_HOST: string;
|
|
|
|
declare const SOLR_CORE: string;
|
2021-11-30 14:26:40 +00:00
|
|
|
|
2024-05-13 14:56:15 +00:00
|
|
|
// OPENSEARCH
|
|
|
|
declare const OPEN_HOST: string;
|
|
|
|
declare const OPEN_CORE: string;
|
|
|
|
|
2021-11-30 14:26:40 +00:00
|
|
|
// const _EDGE_URL = EDGE_URL;
|
|
|
|
// const _POINT_URL = POINT_URL;
|
2022-09-08 10:03:12 +00:00
|
|
|
const _APP_URL = APP_URL;
|
2024-03-16 16:03:46 +00:00
|
|
|
const _VUE_API = VUE_API;
|
2022-01-21 13:02:28 +00:00
|
|
|
const _SOLR_HOST = SOLR_HOST;
|
|
|
|
const _SOLR_CORE = SOLR_CORE;
|
2021-11-30 14:26:40 +00:00
|
|
|
|
2024-05-13 14:56:15 +00:00
|
|
|
// OPENSEARCH
|
|
|
|
const _OPEN_HOST = OPEN_HOST;
|
|
|
|
const _OPEN_CORE = OPEN_CORE;
|
|
|
|
|
2021-11-30 14:26:40 +00:00
|
|
|
// export { _EDGE_URL as EDGE_URL };
|
|
|
|
// export { _POINT_URL as POINT_URL };
|
2022-09-08 10:03:12 +00:00
|
|
|
export { _APP_URL as APP_URL };
|
2024-03-16 16:03:46 +00:00
|
|
|
export { _VUE_API as VUE_API };
|
2022-01-21 13:02:28 +00:00
|
|
|
export { _SOLR_HOST as SOLR_HOST };
|
|
|
|
export { _SOLR_CORE as SOLR_CORE };
|
2024-05-13 14:56:15 +00:00
|
|
|
|
|
|
|
// OPENSEARCH
|
|
|
|
export { _OPEN_HOST as OPEN_HOST };
|
|
|
|
export { _OPEN_CORE as OPEN_CORE };
|