Skip to content

Commit f6926ca

Browse files
Mrlilililiyan1sapphi-red
authored
feat: use host url to open browser (#19414)
Co-authored-by: liyan1 <liyan1@joyy.com> Co-authored-by: sapphi-red <49056869+sapphi-red@users.noreply.github.com>
1 parent 4bcd79a commit f6926ca

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

packages/vite/src/node/server/index.ts

+9-2
Original file line numberDiff line numberDiff line change
@@ -658,8 +658,15 @@ export async function _createServer(
658658
},
659659
openBrowser() {
660660
const options = server.config.server
661-
const url =
662-
server.resolvedUrls?.local[0] ?? server.resolvedUrls?.network[0]
661+
const host = options.host
662+
let url: string | undefined
663+
if (typeof host === 'string') {
664+
url = [
665+
...(server.resolvedUrls?.local ?? []),
666+
...(server.resolvedUrls?.network ?? []),
667+
].find((url) => url.includes(host))
668+
}
669+
url ??= server.resolvedUrls?.local[0] ?? server.resolvedUrls?.network[0]
663670
if (url) {
664671
const path =
665672
typeof options.open === 'string'

0 commit comments

Comments
 (0)