diff options
| author | Sho Sakuma <me@m1sk9.dev> | 2026-04-05 01:41:17 +0900 |
|---|---|---|
| committer | Sho Sakuma <me@m1sk9.dev> | 2026-04-05 01:41:17 +0900 |
| commit | 9146547efae71efa1d67a48e20ae4271785847e9 (patch) | |
| tree | c008f240e02aa828ad47728e671232e687f4b911 /website | |
| parent | 72d8a27419cfeaec8bf70e8d6291b64b7463eab9 (diff) | |
| download | LunaticChat-9146547efae71efa1d67a48e20ae4271785847e9.tar.gz LunaticChat-9146547efae71efa1d67a48e20ae4271785847e9.tar.bz2 LunaticChat-9146547efae71efa1d67a48e20ae4271785847e9.zip | |
fix(website): resolve biome formatting errors in sidebar config
Fix irregular whitespace (ideographic space) and missing trailing commas
in ja.ts and en.ts that caused biome CI check to fail.
Co-Authored-By: Claude <noreply@anthropic.com>
Diffstat (limited to 'website')
| -rw-r--r-- | website/.vitepress/config/en.ts | 2 | ||||
| -rw-r--r-- | website/.vitepress/config/ja.ts | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/website/.vitepress/config/en.ts b/website/.vitepress/config/en.ts index 691cc5e..3a05016 100644 --- a/website/.vitepress/config/en.ts +++ b/website/.vitepress/config/en.ts @@ -69,6 +69,6 @@ export const en: DefaultTheme.Config = { }, ], }, - ] + ], }, }; diff --git a/website/.vitepress/config/ja.ts b/website/.vitepress/config/ja.ts index fd00a2f..e74102c 100644 --- a/website/.vitepress/config/ja.ts +++ b/website/.vitepress/config/ja.ts @@ -7,7 +7,7 @@ export const ja: DefaultTheme.Config = { }, nav: [ { link: '/download', text: 'ダウンロード' }, - { link: '/docs/getting-started', text: 'ドキュメント' } + { link: '/docs/getting-started', text: 'ドキュメント' }, ], sidebar: { '/docs/': [ @@ -69,6 +69,6 @@ export const ja: DefaultTheme.Config = { }, ], }, - ] + ], }, }; |
