Closed ahmadtawakol closed 1 year ago
Thanks for the bug report @ahmadtawakol , I've fixed this issue in 1.53.0 of the extension. Please give it try and let me know if you have any further issues.
Can confirm that it now works correctly. Thank you!
If I use the external address option with live reload, the
--public-host
option gets appended to the end of the command, which is fine except when I also turn on theUse HTTPS
option. Then the--public-host
option gets added to the very end, after the--
, where it then has no effect.This is what runs when I click on Run:
npx ionic cap run ios --target=00008130-000E65400821401C --livereload --external --no-sync --ssl -- --ssl-cert=<server.crt> --ssl-key=<server.key> --public-host=192.168.0.88
This is what it is supposed to look like:
npx ionic cap run ios --target=00008130-000E65400821401C --livereload --external --no-sync --ssl --public-host=192.168.0.88 -- --ssl-cert=<server.crt> --ssl-key=<server.key>