auto translation setup

This commit is contained in:
2026-04-17 10:46:24 +02:00
parent e1efa898b4
commit dbeb294920
3 changed files with 46 additions and 19 deletions
+4 -1
View File
@@ -1,7 +1,10 @@
import type { NextConfig } from "next";
import createNextIntlPlugin from 'next-intl/plugin';
const nextConfig: NextConfig = {
/* config options here */
};
export default nextConfig;
const withNextIntl = createNextIntlPlugin('./i18n.ts');
export default withNextIntl(nextConfig);