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

15 lines
456 B
TypeScript

import { getPublicPath } from "@vercel/geistdocs/config";
import { localizeHref } from "@vercel/geistdocs/localize-href";
import { config } from "./config";
export const getLocalizedPath = (lang: string | undefined, path: string) => {
const defaultLanguage = config.defaultLanguage ?? "en";
const localizedPath = localizeHref(
path,
lang ?? defaultLanguage,
defaultLanguage
);
return getPublicPath(localizedPath, config.basePath);
};