blob: a9f18b1e5f4cccc92f2b1098b10b6705dbdc2781 (
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/*)
});
|