Home > Software design >  Live reload feature on Mobile device for PWA app
Live reload feature on Mobile device for PWA app

Time:09-21

I need to develop a Mobile PWA app. I use Ionic/Capacitor. I know how to run the native app on a device with live reload feature. But how can I do the same with a mobile web app? i.e. I would like to develop PWA on advice from the beginning.

I use this with Native Android apps:

ionic cap run android -l --host=0.0.0.0

CodePudding user response:

To serve your ionic app on local Lan via same Wifi you can use Command:

ionic serve --external

you will see external IP address in your terminal use that IP in your Mobile Device Browser.

  • Related