feat: configure next-intl i18n with ES/EN locales

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
consultoria-as
2026-02-22 03:54:05 +00:00
parent 6f342a065b
commit 00d500d3d3
12 changed files with 1322 additions and 637 deletions

View File

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