4 lines
166 B
TypeScript
4 lines
166 B
TypeScript
export const CONSTANTS = {
|
|
apiUrl: process.env.NEXT_PUBLIC_API_URL || "http://localhost:4000",
|
|
getAssetUrl: (path: string) => `${CONSTANTS.apiUrl}/${path}`,
|
|
} |