Description
Why
When we access to the documentation with index.html
at the end of the url (https://mithril.network/doc/index.html
), the page content is displayed twice. It's not the case with the root url: https://mithril.network/doc/
After investigation, it appears that:
- Docusaurus is not designed to work using
index.html
in url. Instead, we should use the clean URL. - This issue is documented on docusaurus repository: fix(core): fix duplicate app render when url accessed through .html extension facebook/docusaurus#10059
Note
We have noticed the same problem on the Cardano Scaling website.
What
Identify the origin of the problem and attempt to fix it.
How
- Identify the origin of the problem
- Propose a fix if possible