mirror of
https://github.com/vercel/flags.git
synced 2026-09-19 03:49:23 +08:00
6 lines
270 B
TypeScript
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();
|