fix(web): document remote welcome constraints

This commit is contained in:
ZiyaZhang
2026-08-03 00:14:35 -07:00
parent 28721e1dc5
commit 59d923395a
6 changed files with 21 additions and 6 deletions

View File

@@ -166,7 +166,11 @@ export interface LaunchOptions {
}
/** Leave the current welcome notice unacknowledged; ordinary scenarios publish it as complete before browser boot. */
welcomeNoticePending?: boolean
/** Browse through this trusted non-loopback hostname while the test server stays bound to loopback. */
/**
* Browse through a trusted non-loopback hostname that the browser resolves
* to loopback (for example `*.localhost`). The test server stays bound to
* 127.0.0.1; a non-resolving authority fails before Host trust is exercised.
*/
remoteAuthority?: string
}