mirror of
https://github.com/TheRealOwenRees/echecsfrance.git
synced 2026-07-23 04:26:57 +00:00
6 lines
181 B
TypeScript
6 lines
181 B
TypeScript
import { getRequestConfig } from "next-intl/server";
|
|
|
|
export default getRequestConfig(async ({ locale }) => ({
|
|
messages: (await import(`./messages/${locale}.json`)).default,
|
|
}));
|