For me hot reloading is not working, I think this is because my app is a multi-page app.
def register_callbacks(app, data_provider):
@app.callback(Output('page-content', 'children'), [Input('url', 'pathname')], [State('session', 'data')])
def display_page(pathname, data):
if pathname == '/Test_1':
return Test_1.get_layout()
Could this be true? If not, what else could be the issue?
app_instance.run_server(debug=True, dev_tools_hot_reload=True)