feat(i18n): setup next-intl core config and translation dictionaries

This commit is contained in:
Poyraz
2026-06-27 14:42:40 +03:00
parent 6d2ecbc14f
commit 968ebb33c5
19 changed files with 275 additions and 91 deletions
+4 -1
View File
@@ -1,4 +1,7 @@
import type { NextConfig } from "next";
import createNextIntlPlugin from "next-intl/plugin";
const withNextIntl = createNextIntlPlugin();
const nextConfig: NextConfig = {
compress: true,
@@ -18,4 +21,4 @@ const nextConfig: NextConfig = {
},
};
export default nextConfig;
export default withNextIntl(nextConfig);