mirror of https://github.com/buster-so/buster.git
5 lines
242 B
TypeScript
5 lines
242 B
TypeScript
|
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`;
|