UNPKG

@intl-t/next

Version:

A Fully-Typed Object-Based i18n Translation Library for Next.js

9 lines (8 loc) 256 B
import { unstable_rootParams as rootParams } from "next/server"; export async function getRootParamsLocale() { const { locale } = await rootParams(); // @ts-ignore if (this?.settings) this.settings.locale = locale; return locale; }