UNPKG

next-intl

Version:

Internationalization (i18n) for Next.js

13 lines (10 loc) 339 B
import getConfig from '../../server/react-server/getConfig.js'; /** * This is only moved to a separate module for easier mocking in * `../createNavigatoin.test.tsx` in order to avoid suspending. */ async function getServerLocale() { const config = await getConfig(); return config.locale; } export { getServerLocale as default };