We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e36147 commit b3d4376Copy full SHA for b3d4376
docs/content/ja/concepts/dev-server.md
@@ -1,3 +1,13 @@
1
# 開発サーバー
2
3
+Vite開発サーバーは、一般的なWebサーバーと同様に、特定のURLに対するリクエストを受け取り、特定のリソースを返します。
4
+
5
+<!-- TODO: 「逐次ビルド」という用語が妥当か考える -->
6
7
+どんなURLへのリクエストに対してどんなリソースを返すかは、Webサーバーの実装次第です。たとえば、 `/index.html` というURLに対するリクエストに、Webサーバーのファイルシステムにおける `/index.html` を返す必要はありません。かわりに`/www/index.html`ファイルを返すことが可能です。
8
9
+この点を利用して、Vite開発サーバーは、さまざまなリクエストに対してさまざまな処理を
10
11
+## ミドルウェア
12
13
TBD
0 commit comments