22 lines
605 B
TypeScript
22 lines
605 B
TypeScript
// Dexar Market Configuration
|
|
export const environment = {
|
|
production: false,
|
|
useMockData: false, // Toggle to test with backOffice mock data
|
|
brandName: 'Dexarmarket',
|
|
brandFullName: 'Dexar Market',
|
|
theme: 'dexar',
|
|
apiUrl: '/api',
|
|
logo: '/assets/images/dexar-logo.svg',
|
|
contactEmail: 'info@dexarmarket.ru',
|
|
supportEmail: 'info@dexarmarket.ru',
|
|
domain: 'dexarmarket.ru',
|
|
telegram: '@dexarmarket',
|
|
telegramBot: 'DexarSupport_bot',
|
|
phones: {
|
|
russia: '+7 (926) 459-31-57',
|
|
armenia: '+374 94 86 18 16',
|
|
support: '+7 (926) 459-31-57'
|
|
},
|
|
phoneTel: 'tel:+79264593157'
|
|
};
|