feat: install next-intl and set up i18n routing config

This commit is contained in:
2026-08-10 15:32:11 +02:00
parent cad0584af3
commit 0a75aba78b
6 changed files with 464 additions and 18 deletions
+4 -1
View File
@@ -1,5 +1,8 @@
import type { NextConfig } from 'next'
import createNextIntlPlugin from 'next-intl/plugin'
const withNextIntl = createNextIntlPlugin('./src/i18n/request.ts')
const nextConfig: NextConfig = {}
export default nextConfig
export default withNextIntl(nextConfig)