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