Customizing default Servicestack swagger page

I would like to add a company logo and change fonts on the default servicestack swagger page.

I cannot figure out how to do that. Can someone get me started?

Thanks.

You can customize the logo when registering the plugin, e.g:

Plugins.Add(new OpenApiFeature {
    LogoUrl = "http://company.com/logo.png",
    LogoHref = "http://company.com"
});

For any further customizations you’d need you would need to include a modified copy of the static files you want to override in your project.