Reputation: 1106
So I have this Swagger UI which I built using YAML config and I am using it with Connexion Python. How do I change the title of the page which has been circled in red marker?
I have tried googling out stuff, but seems like, there are no answers for users of Connexion or Swagger YAML. Please help me out!
Upvotes: 0
Views: 691
Reputation: 11
app.use("/api-docs", swaggerUi.serve, swaggerUi.setup(swagerDoc, { customSiteTitle: "Your title" }));
Upvotes: 1