I have a dash app that i may want to call from different sources.
For example, to solve this problem in a react app i solved it in the index.html this way:
<script>/bundle.js</script>
<script>/some/other/source/bundle.js</script>
In a dash app, i need to set multiple base path names:
When i defined my app this way:
app= Dash (..., url_base_pathname='/some/other/path/')
or
app= Dash (..., url_base_pathname='/')
It works in one of the pages, but not in both. Can i do something like this?:
app= Dash (..., url_base_pathname=['/', '/some/other/path/'])
So that all requests are duplicated.
Thank you!