-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7e36147
commit b3d4376
Showing
1 changed file
with
10 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |