diff options
| author | 2026-03-26 09:23:07 +0800 | |
|---|---|---|
| committer | 2026-03-26 09:23:07 +0800 | |
| commit | f8b4bcb3bdc8f11323103081ef8c05b06159d684 (patch) | |
| tree | e86c8d46e73262c67c1755aaf4202cbcd1f8f844 /packages/docs/app/lib/i18n.ts | |
| parent | 1812ca8974aee347b61bd415c1e2b63a205137dd (diff) | |
| parent | 94b0d8e208363c802c12b56d8bdbef574dd1fb91 (diff) | |
| download | DropOut-f8b4bcb3bdc8f11323103081ef8c05b06159d684.tar.gz DropOut-f8b4bcb3bdc8f11323103081ef8c05b06159d684.zip | |
Merge branch 'main' of https://github.com/HydroRoll-Team/DropOut
Diffstat (limited to 'packages/docs/app/lib/i18n.ts')
| -rw-r--r-- | packages/docs/app/lib/i18n.ts | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/packages/docs/app/lib/i18n.ts b/packages/docs/app/lib/i18n.ts index a9f18b1..cf81ffe 100644 --- a/packages/docs/app/lib/i18n.ts +++ b/packages/docs/app/lib/i18n.ts @@ -1,8 +1,8 @@ -import { defineI18n } from 'fumadocs-core/i18n'; +import { defineI18n } from "fumadocs-core/i18n"; export const i18n = defineI18n({ - defaultLanguage: 'zh', - languages: ['zh', 'en'], - hideLocale: 'default-locale', - parser: 'dir', // 使用目录结构 (content/zh/*, content/en/*) + defaultLanguage: "zh", + languages: ["zh", "en"], + hideLocale: "default-locale", + parser: "dir", // 使用目录结构 (content/zh/*, content/en/*) }); |