UNPKG

@intlayer/config

Version:

Retrieve Intlayer configurations and manage environment variables for both server-side and client-side environments.

13 lines 614 B
//#region src/defaultValues/editor.d.ts declare const APPLICATION_URL: any; declare const EDITOR_URL = "http://localhost:8000"; declare const CMS_URL = "https://app.intlayer.org"; declare const BACKEND_URL = "https://back.intlayer.org"; declare const PORT = 8000; declare const IS_ENABLED = false; declare const LIVE_SYNC = false; declare const DICTIONARY_PRIORITY_STRATEGY = "local_first"; declare const LIVE_SYNC_PORT = 4000; //#endregion export { APPLICATION_URL, BACKEND_URL, CMS_URL, DICTIONARY_PRIORITY_STRATEGY, EDITOR_URL, IS_ENABLED, LIVE_SYNC, LIVE_SYNC_PORT, PORT }; //# sourceMappingURL=editor.d.ts.map