9 lines
209 B
TypeScript
9 lines
209 B
TypeScript
import createMiddleware from 'next-intl/middleware';
|
|
import { routing } from './i18n/routing';
|
|
|
|
export default createMiddleware(routing);
|
|
|
|
export const config = {
|
|
matcher: ['/', '/(ja|en|pt-BR)/:path*'],
|
|
};
|