Add country localization

This commit is contained in:
Codex
2026-05-04 23:33:29 +01:00
parent 102967242e
commit d5c5f4fc17
13 changed files with 1297 additions and 123 deletions

View File

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