Ich habe eine Middleware.js: < /p>
Code: Select all
import { NextResponse } from "next/server";
const SUPPORTED_LOCALES = ['cs', 'sk', 'da', 'de'];
const DEFAULT_LOCALE = 'cs';
function detectLocale(acceptLanguage) {
if (!acceptLanguage) return DEFAULT_LOCALE;
const languages = acceptLanguage.split(',');
for (const lang of languages) {
const [code] = lang.split(';')[0].toLowerCase().split('-');
if (SUPPORTED_LOCALES.includes(code)) {
return code;
}
}
return DEFAULT_LOCALE;
}
export function middleware(req) {
const url = req.nextUrl.clone();
const { pathname } = url;
if (pathname === '/') {
const locale = detectLocale(req.headers.get('accept-language'));
url.pathname = `/${locale}`;
return NextResponse.redirect(url);
}