Skip to content

Commit

Permalink
docs: add contents
Browse files Browse the repository at this point in the history
  • Loading branch information
nozomuikuta committed Nov 4, 2024
1 parent 7e36147 commit b3d4376
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions docs/content/ja/concepts/dev-server.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# 開発サーバー

Vite開発サーバーは、一般的なWebサーバーと同様に、特定のURLに対するリクエストを受け取り、特定のリソースを返します。

<!-- TODO: 「逐次ビルド」という用語が妥当か考える -->

どんなURLへのリクエストに対してどんなリソースを返すかは、Webサーバーの実装次第です。たとえば、 `/index.html` というURLに対するリクエストに、Webサーバーのファイルシステムにおける `/index.html` を返す必要はありません。かわりに`/www/index.html`ファイルを返すことが可能です。

この点を利用して、Vite開発サーバーは、さまざまなリクエストに対してさまざまな処理を

## ミドルウェア

TBD

0 comments on commit b3d4376

Please sign in to comment.