Archived
1
0
This repository has been archived on 2025-11-29. You can view files and clone it, but cannot push or open issues or pull requests.
Files
app/apps/frontend/config/api.ts

8 lines
221 B
TypeScript

// Конфигурация API
export const API_BASE_URL = __DEV__
? 'http://localhost:3000'
: process.env.EXPO_PUBLIC_API_URL || 'http://localhost:3000';
export const AUTH_BASE_URL = `${API_BASE_URL}/auth/api`;