However, to speed up the visual dev cycle I’d love to use auto reload in the site generated by the Python app. This means: When I re-run the app after layout changes the browser displaying the site automatically reloads the page.
Is there a way to integrate for example browsersync in a Dash app? Any tutorial for this?
It really does sound like you are looking for hot-reloading. hot-reloading restarts the server but it also refreshes the browser once the server is restarted. This is the default mode in the latest version of dash (Installation | Dash for Python Documentation | Plotly)
It works now including the browser reload - but I could swear it did not work before… Not sure what I did wrong earlier… Maybe i didn’t set debug-True, or I just didn’t wait long enough for the changes to propagate.
Anyway, it works now. Thanks a lot for your continues responding!