Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions guide/api-javascript.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,8 @@ interface ViteDevServer {
*/
moduleGraph: ModuleGraph
/**
* Vite が CLI に表示する解決済みの URL。ミドルウェアモードの場合や `server.listen` が
* 呼び出される前は null になります
* Vite が CLI に表示する解決済みの URL(URL エンコード済み)。ミドルウェアモードの場合、
* またはサーバーがどのポートもリッスンしていない場合は、`null` を返します
*/
resolvedUrls: ResolvedServerUrls | null
/**
Expand Down Expand Up @@ -274,8 +274,8 @@ interface PreviewServer {
*/
httpServer: http.Server
/**
* Vite が CLI に表示する解決済みURL
* サーバーがリッスンする前は null
* Vite が CLI に表示する解決済みの URL(URL エンコード済み)。
* サーバーがどのポートもリッスンしていない場合は、`null` を返します。
*/
resolvedUrls: ResolvedServerUrls | null
/**
Expand Down