When I run my project in development, Swagger is deployed as follows: https://localhost:5001/swagger/index.html
How can I publish my Swagger project on the application server so that it's accessible to my clients? Currently, I take the generated JSON file, export it to Swagger, and publish the service, but many of the properties I configure during development are lost in the export process. I'm wondering if after running in development (Swagger), I can create an identical service in production.
Thanks