langueages

This commit is contained in:
2026-06-29 20:29:41 +03:00
parent 958152a688
commit e30cbfa132
19 changed files with 1014 additions and 40 deletions
+4 -1
View File
@@ -1,4 +1,7 @@
import type { NextConfig } from "next";
import createNextIntlPlugin from 'next-intl/plugin';
const withNextIntl = createNextIntlPlugin('./i18n/request.ts');
const nextConfig: NextConfig = {
output: "standalone",
@@ -17,4 +20,4 @@ const nextConfig: NextConfig = {
/* other config options here */
};
export default nextConfig;
export default withNextIntl(nextConfig);