language i18n added and tested for server and client side

This commit is contained in:
2025-07-28 18:45:23 +03:00
parent e9cb161f90
commit cbe62d8734
43 changed files with 2778 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
import createNextIntlPlugin from "next-intl/plugin";
const withNextIntl = createNextIntlPlugin("./src/i18n/request.ts");
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
};
export default withNextIntl(nextConfig);