const configuredApiBaseUrl = process.env.NEXT_PUBLIC_API_BASE_URL?.trim();

export const API_BASE_URL =
  configuredApiBaseUrl || "https://shubhamsingh.in/SIT_ERP/api/puresaas";

export const apiEndpoints = {
  auth: {
    login: "/login/",
    register: "/register/",
    verifyOtp: "/verify-otp/",
  },
  demo: "/demo/",
} as const;
