LMDpro / i18n.ts
PetraAI's picture
Upload 27 files
ead5909 verified
raw
history blame
176 Bytes
import {getRequestConfig} from 'next-intl/server';
export default getRequestConfig(async ({locale}) => ({
messages: (await import(`./messages/${locale}.json`)).default
}));