ionic run browser --livereload not working

后端 未结 5 1295
时光取名叫无心
时光取名叫无心 2021-02-19 12:13

i was trying to use live reload on my ionic 2 application. so i found this command

ionic run browser --live-reload

is not working as expected

相关标签:
5条回答
  • 2021-02-19 12:29

    When you run the command ionic cordova run browser --livereload you will see something like this in CLI:

    [19:39:00]  dev server running: http://localhost:8100/ 
    
    [INFO] Development server running
           Local: http://localhost:8100
           External: http://192.168.0.51:8100
    

    Just open http://192.168.0.51:8100 or http://localhost:8100 and your live reload will work on that address. Your browser might have opened in http://localhost:8000 instead of 8100

    0 讨论(0)
  • 2021-02-19 12:31

    First off, should anyone need this answer, the command has been renamed in the later version to

    ionic cordova run browser
    

    Second, The --livereload flag is not supported when you run this command. this issue explains more

    0 讨论(0)
  • 2021-02-19 12:37
    Try This
    
    ionic cordova run browser --livereload  --consolelogs --serverlogs
    
    0 讨论(0)
  • 2021-02-19 12:39

    Using this command browser will be reloaded automatically.

    ionic serve
    

    If you want to run application with different platform in browser you can use this command :

    ionic serve -l
    

    This both command will reload page automatically on code change

    0 讨论(0)
  • 2021-02-19 12:51

    i found the solution on the github page

    include a script in the package.json file

    "browser": "ionic-app-scripts serve --sourceMap source-map --iscordovaserve --wwwDir platforms/browser/www/ --buildDir platforms/browser/www/build"
    

    and run

    npm run browser
    
    0 讨论(0)
提交回复
热议问题