Files
Webify/i18n.ts

5 lines
176 B
TypeScript

import {getRequestConfig} from 'next-intl/server';
export default getRequestConfig(async ({locale}) => ({
messages: (await import(`./messages/${locale}.json`)).default
}));