Files
vercel__eve/apps/docs/lib/geistdocs/root-params.ts
2026-08-21 13:35:24 -04:00

9 lines
280 B
TypeScript

import { notFound } from "next/navigation";
import * as root from "next/root-params";
import { isSupportedLanguage } from "./languages";
export const getRootLang = async () => {
const lang = await root.lang();
return lang && isSupportedLanguage(lang) ? lang : notFound();
};