From a4e2ebd3372916814ad447154a62fd870904afde Mon Sep 17 00:00:00 2001 From: Shinya Fujino Date: Mon, 5 Jun 2023 21:13:38 +0900 Subject: i18n(ja): Update configuration.md --- docs/src/content/docs/ja/reference/configuration.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/docs/src/content/docs/ja/reference/configuration.md b/docs/src/content/docs/ja/reference/configuration.md index 65501ed9..20bf64e7 100644 --- a/docs/src/content/docs/ja/reference/configuration.md +++ b/docs/src/content/docs/ja/reference/configuration.md @@ -5,6 +5,21 @@ description: Starlightがサポートするすべての設定オプションの ## `starlight`インテグレーションの設定 +Starlightは[Astro](https://astro.build)ウェブフレームワークの上に構築されたインテグレーションです。Astroの`astro.config.mjs`設定ファイル内でプロジェクトの設定をおこないます。 + +```js +// astro.config.mjs +import { defineConfig } from 'astro/config'; +import starlight from '@astrojs/starlight'; +export default defineConfig({ + integrations: [ + starlight({ + title: "私の楽しいドキュメントサイト", + }), + ], +}); +``` + 以下のオプションを`starlight`インテグレーションに設定できます。 ### `title`(必須) -- cgit