2026-04-01 15:34:50 +03:00

4 lines
166 B
TypeScript

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