Files
marketplaces/src/environments/environment.ts

20 lines
562 B
TypeScript
Raw Normal View History

2026-01-18 18:57:06 +04:00
// Dexar Market Configuration
export const environment = {
production: false,
2026-02-20 10:44:03 +04:00
useMockData: true, // Toggle to test with backOffice mock data
2026-01-18 18:57:06 +04:00
brandName: 'Dexarmarket',
brandFullName: 'Dexar Market',
theme: 'dexar',
apiUrl: 'https://api.dexarmarket.ru:445',
logo: '/assets/images/dexar-logo.svg',
contactEmail: 'info@dexarmarket.ru',
supportEmail: 'info@dexarmarket.ru',
domain: 'dexarmarket.ru',
telegram: '@dexarmarket',
2026-02-28 17:18:24 +04:00
telegramBot: 'dexarmarket_bot',
2026-01-18 18:57:06 +04:00
phones: {
russia: '+7 (926) 459-31-57',
armenia: '+374 94 86 18 16'
}
};