mirror of https://github.com/Lapikud/tipilan
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
551 B
20 lines
551 B
import createMiddleware from 'next-intl/middleware'; |
|
import {routing} from './i18n/routing'; |
|
|
|
export default createMiddleware(routing); |
|
|
|
export const config = { |
|
// Match only internationalized pathnames |
|
matcher: [ |
|
// Enable a redirect to a matching locale at the root |
|
'/', |
|
|
|
// Set a cookie to remember the previous locale for |
|
// all requests that have a locale prefix |
|
'/(et|en)/:path*', |
|
|
|
// Enable redirects that add missing locales |
|
// (e.g. `/pathnames` -> `/en/pathnames`) |
|
'/((?!_next|_vercel|.*\\..*).*)' |
|
] |
|
};
|
|
|