const RAW_BASE = process.env.NEXT_PUBLIC_API_URL ?? "http://localhost:3000";

export class AppConstants {
  static baseUrl = `${RAW_BASE.replace(/\/$/, "")}/api`;
  static adminLoginPath = "/admin/login";
}
