aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/packages/docs/app/lib/i18n.ts
diff options
context:
space:
mode:
author简律纯 <i@jyunko.cn>2026-02-10 13:28:23 +0800
committerGitHub <noreply@github.com>2026-02-10 13:28:23 +0800
commit21ec63eaaf2ab1cb088f1c1787200a91cce460a5 (patch)
treed3ffcbd1a53b4567c1ba5995a49ecf656fb3c596 /packages/docs/app/lib/i18n.ts
parent3bc1e77f3922d5bdb824d1249971738a8d175f41 (diff)
downloadDropOut-21ec63eaaf2ab1cb088f1c1787200a91cce460a5.tar.gz
DropOut-21ec63eaaf2ab1cb088f1c1787200a91cce460a5.zip
chore: sync with main [skip ci] (#91)
Co-authored-by: NtskwK <natsukawa247@outlook.com> Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Diffstat (limited to 'packages/docs/app/lib/i18n.ts')
-rw-r--r--packages/docs/app/lib/i18n.ts8
1 files changed, 8 insertions, 0 deletions
diff --git a/packages/docs/app/lib/i18n.ts b/packages/docs/app/lib/i18n.ts
new file mode 100644
index 0000000..a9f18b1
--- /dev/null
+++ b/packages/docs/app/lib/i18n.ts
@@ -0,0 +1,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/*)
+});