| 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 |
|