> For the complete documentation index, see [llms.txt](https://gitbook.com/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://gitbook.com/docs/documentation/ja-gitbook-documentation/gong-kai/custom-domain/setting-a-custom-subdirectory/configuring-a-subdirectory-with-vercel.md).

# Vercel を使ったサブディレクトリの設定

{% stepper %}
{% step %}

#### GitBookサイトの設定

GitBook組織で、サイドバーのドキュメントサイト名をクリックし、次に **サイトを管理**、次に **ドメインとリダイレクト**。「サブディレクトリ」の下で、クリック **サブディレクトリを設定**.

ドキュメントをホストしたいURLを入力してください。次に、ドキュメントにアクセスするためのサブディレクトリを指定します。例: `tomatopy.pizza/docs`、そしてクリック **設定**.

の下で **追加設定**、プロキシURLが表示されます。これは次のステップでVercelの設定を行う際に使用します。クリップボードにコピーしてください。
{% endstep %}

{% step %}

#### vercel.jsonを更新

Vercelアプリで、あなたの `vercel.json`ファイルを開きます（まだない場合はルートディレクトリに作成してください）。次に、以下を追加します:

```json
{
    "rewrites": [
        {
            "source": "/docs",
            "destination": "<GITBOOKから取得したプロキシURLを入力>"
        },
        {
            "source": "/docs/:match*",
            "destination": "<GITBOOKから取得したプロキシURLを入力>/:match*"
        }
    ]
}
```

*URLを必ず更新してください* 5行目のURLを、最初のステップでGitBookから取得したプロキシURLに置き換えてください。
{% endstep %}

{% step %}

#### アプリを再デプロイして試してみましょう！

更新した設定でVercelアプリを再デプロイしてください。これには少し時間がかかる場合があります。これで、URLにアクセスするとドキュメントサイトが表示されるはずです！
{% endstep %}
{% endstepper %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://gitbook.com/docs/documentation/ja-gitbook-documentation/gong-kai/custom-domain/setting-a-custom-subdirectory/configuring-a-subdirectory-with-vercel.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
