10 lines
306 B
TypeScript
10 lines
306 B
TypeScript
import createMiddleware from 'next-intl/middleware';
|
|
import { routing } from './src/i18n/routing';
|
|
|
|
export default createMiddleware(routing);
|
|
|
|
export const config = {
|
|
// Match all pathnames except internal Next.js paths, API routes, and static files
|
|
matcher: ['/((?!_next|_vercel|api|.*\\..*).*)'],
|
|
};
|