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