z0mt3c / hapi-swaggered-ui

An easy swagger-ui drop-in plugin for hapi (to be used with hapi-swaggered).
39 stars 31 forks source link

hiding the top green swagger bar #136

Open punkish opened 5 years ago

punkish commented 5 years ago

I would like to not show the green swagger top bar

swagger

Right now I can hide that bar by using an inline stylesheet like below, but I'd rather not have this be generated and sent to the browser at all.

 .swagger-ui .topbar {
            display: none;
            visibility: hidden;
}