Files
2026-04-17 10:46:24 +02:00

11 lines
257 B
TypeScript

import type { NextConfig } from "next";
import createNextIntlPlugin from 'next-intl/plugin';
const nextConfig: NextConfig = {
/* config options here */
};
const withNextIntl = createNextIntlPlugin('./i18n.ts');
export default withNextIntl(nextConfig);