Skip to content

Commit

Permalink
i18n(ja): Update customization.mdx (#1526)
Browse files Browse the repository at this point in the history
  • Loading branch information
morinokami authored Feb 19, 2024
1 parent 4deb92a commit 1d914f9
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions docs/src/content/docs/ja/guides/customization.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -267,6 +267,25 @@ hero:
---
```

### デフォルトの404ページを無効にする

完全にカスタマイズされた404レイアウトがプロジェクトに必要な場合は、`src/pages/404.astro`ルートを作成し、Starlightのデフォルトルートを無効にするために[`disable404Route`](/ja/reference/configuration/#disable404route)オプションを設定します。

```js {9}
// astro.config.mjs
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';

export default defineConfig({
integrations: [
starlight({
title: '404をカスタマイズしたドキュメント',
disable404Route: true,
}),
],
});
```

## カスタムフォント

デフォルトでは、Starlightはユーザーのローカルデバイスで利用可能なサンセリフフォントをすべてのテキストに使用します。これにより、大きなフォントファイルをダウンロードするための余分な帯域幅を必要とせず、各ユーザーに馴染みのあるフォントでドキュメントを高速に読み込むことができます。
Expand Down

0 comments on commit 1d914f9

Please sign in to comment.