123456789101112131415161718192021 |
- import { createSharedPathnamesNavigation } from "next-intl/navigation";
- import { getRequestConfig } from "next-intl/server";
- import { notFound } from "next/navigation";
- const modulesFiles = require.context("../messages", true, /\.json$/);
- export const locales = modulesFiles.keys().map((modulePath: string) => {
- return modulePath.replace(/^\.\/(.*)\.\w+$/, "$1");
- });
- // 路由
- export const { Link, redirect, usePathname, useRouter } = createSharedPathnamesNavigation({
- locales,
- });
- export default getRequestConfig(async ({ locale }) => {
- if (!locales.includes(locale)) notFound();
- const file = (await import(`../messages/${locale}.json`)).default;
- return {
- messages: file,
- };
- });
|