Closed supriyo-biswas closed 6 years ago
For the web application that I'm developing, I don't need the /docs endpoint. Is there a way to remove it?
/docs
Also, I must mention that I'm really loving apistar :)
You can disable the endpoint by passing docs_url=None into the App constructor.
docs_url=None
app = App(routes=routes, docs_url=None)
Thanks @What-If-I!
For the web application that I'm developing, I don't need the
/docs
endpoint. Is there a way to remove it?Also, I must mention that I'm really loving apistar :)