File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
packages/app/src/cli/services/dev Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -42,6 +42,6 @@ export function setupHTTPServer(options: SetupHTTPServerOptions) {
4242
4343 // eslint-disable-next-line @typescript-eslint/no-misused-promises
4444 const httpServer = createServer ( httpApp )
45- httpServer . listen ( options . devOptions . port )
45+ httpServer . listen ( options . devOptions . port , 'localhost' )
4646 return httpServer
4747}
Original file line number Diff line number Diff line change @@ -273,5 +273,5 @@ export const startProxyServer: DevProcessFunction<{
273273 `Proxy server started on port ${ port } ${ localhostCert ? `with certificate ${ localhostCert . certPath } ` : '' } ` ,
274274 stdout ,
275275 )
276- await server . listen ( port )
276+ await server . listen ( port , 'localhost' )
277277}
You can’t perform that action at this time.
0 commit comments