import createMiddleware from 'next-intl/middleware'; import { locales, defaultLocale } from './i18n/request'; export default createMiddleware({ locales, defaultLocale, localePrefix: 'always', // Always show locale in URL for consistency localeDetection: true // Enable browser language detection }); export const config = { // Skip all paths that should not be internationalized matcher: ['/((?!api|_next|.*\\..*).*)'] };