| 1 |
// The linter plugin expects const DEFAULT_URLS to be defined here to ensure no localhost |
| 2 |
const DEFAULT_URLS = { |
| 3 |
AI_HOST: 'https://ai.extendify.com', |
| 4 |
PATTERNS_HOST: 'https://patterns.extendify.com', |
| 5 |
KB_HOST: 'https://kb.extendify.com', |
| 6 |
INSIGHTS_HOST: 'https://insights.extendify.com', |
| 7 |
IMAGES_HOST: 'https://images-resource.extendify.com', |
| 8 |
DASHBOARD_HOST: 'https://dashboard.extendify.com', |
| 9 |
}; |
| 10 |
|
| 11 |
export const { AI_HOST, PATTERNS_HOST, KB_HOST, INSIGHTS_HOST, IMAGES_HOST } = |
| 12 |
DEFAULT_URLS; |
| 13 |
|