The problem of the config of Djangodash

In dash demo, the app was built like this way:
app = dash.Dash(name, external_stylesheets=external_stylesheets)
app.config[‘suppress_callback_exceptions’] = True

I can set the config well.

But when I try to use DjangoDash, there is no config method in the class.

How can I set suppress_callback_exceptions=True ?

SOS~

Have you tried passing this argument to the DjangoDash constructor?