blob: cf81ffeee9a9d9331d14a4a7175768a577293364 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
import { defineI18n } from "fumadocs-core/i18n";
export const i18n = defineI18n({
defaultLanguage: "zh",
languages: ["zh", "en"],
hideLocale: "default-locale",
parser: "dir", // 使用目录结构 (content/zh/*, content/en/*)
});
|