import localeLanguages from "@/config/Languages";
import { defineRouting } from "next-intl/routing";

export const routing = defineRouting({
  // A list of all locales that are supported
  locales: localeLanguages,

  // Used when no locale matches
  defaultLocale: "en",
});
export type locale = (typeof routing.locales)[number];
