()
| 1595 | const supportEmail = `support@${getProduct()}.com` |
| 1596 | |
| 1597 | const cocoBaseURL = function () { |
| 1598 | if (isCodeCombat) { |
| 1599 | return '' |
| 1600 | } |
| 1601 | if (!application.isProduction()) { |
| 1602 | return `${document.location.protocol}//codecombat.com` |
| 1603 | } |
| 1604 | // We are on ozaria domain. |
| 1605 | return `${document.location.protocol}//${document.location.host}`.replace(OZARIA, CODECOMBAT).replace(OZARIA_CHINA, CODECOMBAT_CHINA) |
| 1606 | } |
| 1607 | |
| 1608 | const ozBaseURL = function () { |
| 1609 | if (isOzaria) { |