export function matchLangrage()

in src/utils/index.ts [16:20]


export function matchLangrage() {
  const p = globalThis.location?.pathname;
  const lang = p?.match(/\/\w+\/*/);
  return lang?.[0];
}