You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Trying to supply values for either of requests_pathname_prefix and requests_pathname_prefix results in an error:
dash.exceptions.InvalidConfig:
You supplied `url_base_pathname` and `requests_pathname_prefix`. This is ambiguous.
To fix this, set `routes_pathname_prefix` instead of `url_base_pathname`.
However I did not supply a value for url_base_pathname. Looks like this is because _configs.pathname_configs is checking to see if url_base_pathname is not None to indicate that a user supplied their own value, but Dash sets a default value of '/', so this logic doesn't work.
The text was updated successfully, but these errors were encountered:
Trying to supply values for either of
requests_pathname_prefix
andrequests_pathname_prefix
results in an error:However I did not supply a value for
url_base_pathname
. Looks like this is because_configs.pathname_configs
is checking to see ifurl_base_pathname
is not None to indicate that a user supplied their own value, but Dash sets a default value of '/', so this logic doesn't work.The text was updated successfully, but these errors were encountered: