diff --git a/frontend/src/lib/constants/common.ts b/frontend/src/lib/constants/common.ts index 617ddd7..f222fc4 100644 --- a/frontend/src/lib/constants/common.ts +++ b/frontend/src/lib/constants/common.ts @@ -1,4 +1,5 @@ export const RESERVED_SLUGS = ["new", "edit", "delete", "settings"]; -export const BACKEND_API_URL = process.env.NEXT_PUBLIC_API_URL; +export const BACKEND_API_URL = + process.env.NEXT_PUBLIC_API_URL || "https://api.eventspace.pragmazest.com"; export const APP_URL = - process.env.NEXT_PUBLIC_APP_URL || "http://localhost:3000"; + process.env.NEXT_PUBLIC_APP_URL || "https://eventspace.pragmazest.com";