9 lines
241 B
TypeScript
9 lines
241 B
TypeScript
import createMiddleware from "next-intl/middleware";
|
|
import { routing } from "./i18n/routing";
|
|
|
|
export default createMiddleware(routing);
|
|
|
|
export const config = {
|
|
matcher: ["/", "/(en|am)/:path*", "/((?!api|_next|_vercel|.*\\..*).*)"],
|
|
};
|