Files
vercel__flags/apps/docs/lib/geistdocs/root-params.ts
2026-08-25 10:38:22 +03:00

6 lines
270 B
TypeScript

import { notFound } from "next/navigation";
// biome-ignore lint/performance/noNamespaceImport: Next.js generates root parameter getters on this module.
import * as root from "next/root-params";
export const getRootLang = async () => (await root.lang()) ?? notFound();