nestjs-backend-common
    Preparing search index...

    Interface CreateSwaggerConfiguration

    interface CreateSwaggerConfiguration {
        app: INestApplication;
        appUrl: string;
        description: string;
        swaggerPath: string;
        title: string;
    }
    Index

    Properties

    app: INestApplication
    appUrl: string

    The URL of the application.

    http://localhost:3000 or https://myapp.com
    
    description: string

    A brief description of the API.

    swaggerPath: string

    The path where the Swagger documentation will be available.

    /docs
    
    title: string

    Usually you want to pick the service name.