fix: update API URLs to thenetwork subdomain

This commit is contained in:
2026-01-28 20:52:36 +00:00
parent 2320005f72
commit 0198348494

View File

@@ -1,11 +1,11 @@
import type { Profile, Client, ClientCreate, Event, EventCreate, Email, EmailGenerate, User } from '@/types';
const API_BASE = import.meta.env.PROD
? 'https://api.donovankelly.xyz/api'
? 'https://api.thenetwork.donovankelly.xyz/api'
: '/api';
const AUTH_BASE = import.meta.env.PROD
? 'https://api.donovankelly.xyz'
? 'https://api.thenetwork.donovankelly.xyz'
: '';
class ApiClient {