12345678910111213 |
- import createMiddleware from "next-intl/middleware";
- import { locales } from "./i18n";
- export default createMiddleware({
- locales: locales,
- defaultLocale: locales[0],
- });
- // const regexString = `/(${locales.join("|")})/:path*`;
- // 创建一个正则表达式对象
- export const config = {
- // todo use this to match the path
- matcher: ["/", "/(br|jp)/:path*"],
- };
|