I'm using Asp.net core with Swagger and the Redoc as API-Documentation:
app.UseReDoc(c =>
{
c.DocumentTitle = "API Documentation";
c.SpecUrl = "/swagger.json";
});
And the default route for api-docs is /api-docs/index.html
I have two questions:
Is there a possibility to make a custom index.html page?
Can we add another custom page to the documentation?
You can make a custom index.html page for it, but it doesn't seem to support too much scalability, it seems that you can't add another pages.
Add your custom Index.html as an embedded file in the csproj file:
My custom index.cshtml(To get started, you should base your custom index.html on the default version):
Test Result:
For more details, you can refer to this link.