middleware.ts 245 B

123456789
  1. /**
  2. * next-intl 中间件 - 语言检测与路由
  3. * 从 Accept-Language / Cookie 推断用户语言
  4. */
  5. export { default } from 'next-intl/middleware';
  6. export const config = {
  7. matcher: ['/((?!_next|_vercel|api|favicon.ico|.*\\..*).*)'],
  8. };