feat(i18n): implement translation basis

This commit is contained in:
2026-04-14 22:23:33 +02:00
parent f0cbc758d9
commit 7ee9adcc9e
13 changed files with 525 additions and 20 deletions
+3 -1
View File
@@ -1,7 +1,9 @@
import type { NextConfig } from "next";
import createNextIntlPlugin from "next-intl/plugin";
const nextConfig: NextConfig = {
/* config options here */
};
export default nextConfig;
const withNextIntl = createNextIntlPlugin();
export default withNextIntl(nextConfig);