proxyraye-nextjs/src/i18n.ts

14 lines
419 B
TypeScript
Raw Normal View History

import {notFound} from 'next/navigation';
import {getRequestConfig} from 'next-intl/server';
// Can be imported from a shared config
const locales = ['en', 'it'];
export default getRequestConfig(async ({locale}) => {
// Validate that the incoming `locale` parameter is valid
if (!locales.includes(locale as any)) notFound();
return {
messages: (await import(`../locale/${locale}.json`)).default
};
});