I host many Docusaurus builds in AWS S3 as a static site under different S3 keys. For example, we could have:
or
The link is generated based on the branch that is built, and what the build number is.
I'm running into an issue where I cannot link to a specific page in the documentation. For example, if the page I want to link is this:
S3 cannot find the correct index.html file because it's looking for the index.html file at the key /docs/master/5/docs/my-page in the bucket (which does not exist)
I believe this could be fixed if I had the option to use a HashRouter, so the URLs would look like this
Would it be possible to allow us to configure this in the docusaurus.config.js file?
Thanks!