buster/apps/web-tss/src/api/config.ts

5 lines
242 B
TypeScript
Raw Normal View History

2025-08-13 00:30:48 +08:00
export const BASE_API_URL = `${process.env.NEXT_PUBLIC_API_URL}`;
export const BASE_API_URL_V2 = `${process.env.NEXT_PUBLIC_API2_URL}`;
export const BASE_URL = `${BASE_API_URL}/api/v1`;
export const BASE_URL_V2 = `${BASE_API_URL_V2}/api/v2`;