Archived
1
0

feat(frontend): Экран авторизации

This commit is contained in:
2025-11-19 17:18:19 +03:00
parent 5f60d12996
commit 20556231b9
26 changed files with 1177 additions and 183 deletions

View File

@ -0,0 +1,7 @@
// Конфигурация 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`;