Closed kurtisane closed 3 years ago
Hi @kurtisane,
I am not currently at the PC. At first glance (from mobile) it's look that you have incorrect order in Configuration
section.
When registering middleware depends on the order. Ocelot
middlewate should be the last.
app.UseSwaggerForOcelotUI(opt =>
{
opt.PathToSwaggerGenerator = "/swagger/docs";
});
app.UseOcelot().Wait()
Hi, I kind of followed following issue : https://github.com/Burgyn/MMLib.SwaggerForOcelot/pull/105 https://github.com/Burgyn/MMLib.SwaggerForOcelot/issues/104
I just get a blank view. So opening localhost/swagger/docs goes somewhere, but its just white background. What am I missing ?
And implemented as follows :
My Ocelot Config (Shortend) :