Hot Reloading Not Working

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)

1 Like

Same here, it is probably the case for changes done not in the index page but in the different pages.