Also, for local assets, make sure that you have app = dash.Dash(__name__)
rather than app = dash.Dash()
. We use __name__
to find the assets directory (sometimes we can guess, but it doesn’t always turn out right)
1 Like