PluginProbe
Leadpages / 1.1.2
Leadpages v1.1.2
1.3.0 1.2.1 1.2.2 1.2.3 trunk 1.0.0 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 1.2.0
leadpages / src / utils / config.ts

config.ts in Leadpages 1.1.2, at src/utils/config.ts

15 lines 585 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /*
2 * The leadpagesData variable is injected into this script by the WordPress wp_localize_script
3 * function in the Assets.php class. We provide production default values here in case
4 * that process fails.
5 */
6
7 // @ts-ignore
8 const LEADPAGES_DATA = typeof leadpagesData !== 'undefined' ? leadpagesData : {};
9
10 const HOME_URL = LEADPAGES_DATA.homeUrl ?? 'your.domain.com';
11 const LEADPAGES_URL = LEADPAGES_DATA.leadpagesUrl ?? 'https://my.leadpages.com/';
12 const BUILDER_URL = LEADPAGES_DATA.builderUrl ?? 'https://pages.leadpages.com/';
13
14 export { HOME_URL, LEADPAGES_URL, BUILDER_URL };
15