File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
packages/@ionic/cli-utils/src/lib/project Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -104,7 +104,7 @@ ${chalk.cyan('[1]')}: ${chalk.bold('https://github.com/angular/angular-cli/wiki/
104
104
this . e . log . info ( `Waiting for connectivity with ${ chalk . green ( program ) } ...` ) ;
105
105
} , 5000 ) ;
106
106
107
- await isHostConnectable ( 'localhost' , ngPort ) ;
107
+ await isHostConnectable ( options . address , ngPort ) ;
108
108
clearInterval ( interval ) ;
109
109
110
110
return {
Original file line number Diff line number Diff line change @@ -126,7 +126,7 @@ export class IonicAngularServeRunner extends ServeRunner<IonicAngularServeOption
126
126
this . e . log . info ( `Waiting for connectivity with ${ chalk . green ( program ) } ...` ) ;
127
127
} , 5000 ) ;
128
128
129
- await isHostConnectable ( 'localhost' , port ) ;
129
+ await isHostConnectable ( options . address , port ) ;
130
130
clearInterval ( interval ) ;
131
131
132
132
return {
Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ export class Ionic1ServeRunner extends ServeRunner<Ionic1ServeOptions> {
105
105
this . e . log . info ( `Waiting for connectivity with ${ chalk . green ( program ) } ...` ) ;
106
106
} , 5000 ) ;
107
107
108
- await isHostConnectable ( 'localhost' , port ) ;
108
+ await isHostConnectable ( options . address , port ) ;
109
109
clearInterval ( interval ) ;
110
110
111
111
return {
You can’t perform that action at this time.
0 commit comments