i18n implementation & Login i18n

This commit is contained in:
headlessdev
2025-04-28 23:19:55 +02:00
parent 58bd039635
commit ff49825eab
7 changed files with 183 additions and 17 deletions

View File

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